forked from CodeYourFuture/HTML-CSS-Module-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·109 lines (102 loc) · 2.16 KB
/
style.css
File metadata and controls
executable file
·109 lines (102 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/* We are using the 'Roboto' font from Google. This has already been added to your HTML header */
body {
font-family: 'Roboto', sans-serif;
-webkit-font-smoothing: antialiased;
}
/**
* Add your custom styles below
*
* Remember:
* - Be organised, use comments and separate your styles into meaningful chunks
* for example: General styles, Navigation styles, Hero styles, Footer etc.
*
* - When using Flexbox, remember the items you want to move around need to be inside a parent container set to 'display: flex'
*/
.navbar{
/*float: right;*/
}
.navigation__list {
display:flex;
flex-direction:row;
justify-content:right;
list-style: none;
}
.navigation__item {
padding: 2rem 15px;
}
.top_main{
position:relative;
}
.text_block{
position:absolute;
color:rgb(247, 244, 244);
top:150px;
left:500px;
text-align: center;
}
.b_learn{
background-color: rgb(180, 50, 50);
}
.karma{
text-align:center;
}
.icones{
display:flex;
justify-content: center;
justify-content: space-around;
}
#computer_icone,#coffee_icone,#fuel-icone{
display:flex;
flex-direction: column;
}
.bottom_main{
/** background-color: rgb(222, 205, 183);
display: grid;
grid-template-areas:
"img p"
"img b";**/
}
.bottom_img{
/** float:left;**/
width:40%;
height:40%;
}
.bottom-text{
display:inline;
text-align:center;
}
.b_bottom {
align-self:center;
color:white;
background-color: rgb(236, 138, 138);
}
/** .navigation__link {
color: var(--grey-dark);
font-weight: 600;
text-transform: uppercase;
text-decoration: none;
}**/
svg {
max-height: 50px;
width: auto;
display: block;
}
.footer{
display:flex;
flex-direction:column;
align-items:center;
}
.social_media_icones{
display:flex;
flex-direction:row;
justify-content:space-around;
}
/** sotor page**/
.form{
float:left;
height:100%;
}
.p_order{
color:white;
background-color: rgb(240, 152, 143);
}