-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (79 loc) · 1.25 KB
/
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
body{
display: flex;
flex-direction: column;
box-sizing: border-box;
min-height: 100vh;
margin: 0;
padding: 0;
font-size: 1.2rem;
}
header{
display: flex;
justify-content: space-between;
align-items: center;
padding: 2rem;
background-color:#00293F ;
color: white;
}
header,footer{
max-width: 100%;
}
nav ul{
display: flex;
margin: 0;
padding: 0;
}
.logo a{
text-decoration: none;
color: white;
}
nav li{
list-style: none;
font-size: 1.2rem;
}
nav li > *{
margin-left: .8em;
}
nav a{
color: white;
text-decoration: none;
}
nav a:focus,
nav a:hover,.logo a:hover{
color: yellowgreen;
}
footer{
display: flex;
justify-content: space-evenly;
align-items: center;
margin-top: auto;
background-color: #00293F;
color: white;
}
@media(max-width:420px){
header{
flex-direction: column;
justify-content: space-evenly;
}
.logo,nav ul{
align-items: center;
padding: 10px;
}
footer{
flex-direction: column;
align-items: center;
}
}
@media(max-width:270px){
header{
align-items: center;
padding: 0;
}
.logo{
margin-bottom: 0;
}
nav ul{
flex-direction: column;
align-items: center;
}
}