-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (48 loc) · 829 Bytes
/
Copy pathstyle.css
File metadata and controls
55 lines (48 loc) · 829 Bytes
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
html,
body {
background-color: #333;
margin: 20px 20px 20px 20px;
}
.header {
color: white;
display: flex;
justify-content: space-between;
align-items: center;
}
.header .logo img {
width: 50px;
height: 50px;
}
.header .lang a {
color: #ffffff;
border: 1px solid white;
border-radius: 50%;
text-align: center;
text-decoration: none;
padding: 5px;
}
.menu {
display: flex;
justify-content: center;
}
.menu li {
margin: auto 10px;
list-style-type: none;
}
.menu li a {
color: #f2f2ff;
text-decoration: none;
position: relative;
}
.main-ctn {
height: 500px;
color: #ffffff;
text-align: center;
background: url('./assets/wifi-moon.webp');
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
margin-top: 40px;
margin-bottom: 40px;
}