-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (63 loc) · 861 Bytes
/
style.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
body{
margin: 0;
}
header{
position: sticky;
left: 0;
top: 0;
display: flex;
justify-content: space-between;
background-color: rgb(20,107,132);
color:white;
padding: 0 15px;
}
header a{
color: white;
}
ul{
list-style: none;
display: flex;
}
li{
padding-right: 30px;
}
a{
text-decoration: none;
color: black;
}
.mydiv{
display: block;
margin: auto;
text-align: center;
padding-top: 20px;
}
main{
margin: 0 auto;
max-width: 500px;
padding: 0 15px;
}
h1,h2 {
text-align: center;
}
img {
width: 100%;
}
figure{
margin: 70;
}
figcaption{
text-align: center;
}
footer{
text-align: center;
padding: 30px 0;
}
footer, footer a{
color: rgb(124, 124, 124)
}
footer nav ul{
justify-content: center
}
footer nav ul li {
padding-left: 10;
}