-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle4.css
133 lines (112 loc) · 1.94 KB
/
style4.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
.playwrite-gb-s-newFont {
font-family: "Playwrite GB S", cursive;
font-optical-sizing: auto;
font-weight: 350;
font-style: normal;
}
* {
margin: 0px;
padding: 0px;
font-family: "Playwrite GB S", cursive;
}
header,
nav,
footer {
background-color: #0d1321;
}
body section {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
header {
display: flex;
justify-content: center;
align-items: center;
background-color: #0d1321;
}
header img {
margin: 20px 0px 10px 0px;
width: 62vw;
height: 140px;
}
nav {
background-color: #1d2d44;
height: 55px;
}
nav ul {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-around;
padding-top: 7px;
background-color: #1d2d44;
}
nav ul li {
list-style: none;
}
nav a {
background-color: #1d2d44;
text-decoration: none;
color: white;
font-size: 1.5rem;
padding: 5px;
}
nav ul:hover > :not(:hover) {
opacity: 0.4;
}
nav a:hover {
transition: 2s;
border-bottom: 2px solid white;
}
footer {
margin-top: 20px;
display: flex;
justify-content: space-around;
align-items: center;
padding: 10px;
}
footer img {
height: 100px;
width: 120px;
}
footer p {
font-size: 16px;
color: #f0ebd8be;
}
section figure img {
max-width: 60vh;
height: 60vh;
}
@media only screen and (max-width: 380px) {
header img {
width: 62vw;
height: 34px;
}
nav {
height: auto;
max-width: 100%;
}
nav ul {
display: flex;
flex-direction: row;
flex-wrap: wrap;
background-color: #1d2d44;
height: auto;
padding: 10px;
}
nav a {
display: flex;
justify-content: center;
font-size: 1rem;
margin: 0px 20px 0px 20px;
}
footer div > p {
font-size: 10px;
}
footer div img {
width: 80px;
height: 60px;
}
}