-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (81 loc) · 1.44 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
87
88
89
90
91
92
93
* {
margin: 0;
padding: 0;
}
body {
background: linear-gradient(to top, #0B3C3D, #126668) no-repeat center center fixed;
}
nav {
height: 15vh;
display: flex;
align-items: center;
}
#menu {
display: none;
height: 5vh;
margin-left: 3vw;
}
#navlinks {
display: none;
background-color: #212121;
font-family: 'Bebas Neue', cursive;
font-size: 4vh;
padding-top: 1vh;
padding-bottom: 1vh;
padding-left: 3vw;
padding-right: 3vw;
}
#navlinks a {
color: white;
text-decoration: none;
padding-left: 3vw;
padding-right: 3vw;
}
nav ul {
display: inline-flex;
list-style: none;
justify-content: left;
margin: auto;
margin-left: 3vw;
}
nav ul li {
font-family: 'Bebas Neue', cursive;
font-size: 3vw;
color: #FCDC59;
padding-left: 2vw;
padding-right: 2vw;
}
nav a {
text-decoration: none;
}
#navreg {
font-family: 'Bebas Neue', cursive;
font-size: 3vw;
color: white;
background-color: #FF5757;
padding-right: 2vw;
padding-left: 2vw;
margin-right: 5vw;
border-radius: 10px;
}
footer {
text-align: center;
margin-bottom: 5vh;
color: white;
font-family: 'Roboto', sans-serif;
}
footer a {
text-decoration: underline;
color: lightblue;
}
@media (max-width: 800px) {
nav ul {
display: none;
}
#navreg {
display: none;
}
#menu {
display: block;
}
}