-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (55 loc) · 1.1 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
body {
background-color: #000;
color: #9500ff;
height: 100vh;
max-width: 100vw;
margin: 0;
justify-content: center;
align-items: center;
overflow-x: hidden;
}
.header {
color: inherit;
position: sticky;
top: 0;
left: 0;
width: 100%;
background: transparent;
padding: 10px 5% 3% 5%;
display: flex;
justify-content: space-between;
z-index: 9;
}
.navbar a {
font-size: 18px;
position: relative;
display: inline-block;
padding: 0px 20px;
text-decoration: none;
font-weight: 500;
margin-left: 35px;
margin: 2% auto;
color: inherit;
text-decoration: none;
text-transform: uppercase;
transition: 0.5s;
letter-spacing: 4px;
cursor: pointer;
overflow: hidden;
transition: .3s;
}
.navbar a:hover {
background: #000000;
color: #ffffff;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
height: auto;
font-family: "Courier New", monospace;
font-size: 24px;
}
.rules{
width: 100vw;
}