-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
50 lines (49 loc) · 804 Bytes
/
styles.css
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
/*NavBar*/
header{
background-color: cornflowerblue;
position: sticky;
top: 0;
overflow: hidden;
}
ul{
height: fit-content;
align-items: center;
display: flex;
justify-content: space-evenly;
list-style-type: none;
margin: 0;
padding: 0;
}
li{
display: inline-block;
}
.nav{
color: #f2f2f2;
text-decoration: none;
font-size: 30px;
padding: 32px 32px;
}
.nav:hover{
display: inline;
background-color: rgb(0, 0, 0);
display: flex;
}
article{
margin: 30px;
background-color:aliceblue;
}
.section1{
margin-top: 10px;
margin: 30px;
padding: 30px;
background-color:beige;
align-items: center;
text-align: center;
justify-content: space-evenly;
}
.section2{
padding: 30px;
align-items: center;
text-align: center;
justify-content: space-evenly;
}