-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
78 lines (78 loc) · 1.35 KB
/
stylesheet.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
body {
margin: 0px 0px 0px 0px;
width: 100vw;
font-family: sans-serif;
}
header {
z-index: 2;
top: 0px;
position: fixed;
height: 50px;
width: 100vw;
background-color: #44cbb1;
box-sizing: border-box;
font-style: italic;
color: #3d2f33;
border-bottom: 1px solid gainsboro;
}
header a {
font-size: 15px;
text-decoration: none;
color: #3d2f33;
}
header nav {
position: fixed;
top: 0px;
left: 0px;
}
header nav ul {
padding-left: 70px;
}
header nav ul li {
margin-top: 20px;
display : inline;
padding-right: 8px;
padding-left: 8px;
font-weight: bold;
}
main {
height: auto;
margin-top: 50px;
color: #3d2f33;
}
main section {
text-align: center;
margin-bottom: 50px;
}
main section h1 {
font-size: 6rem;
margin-top: 100px;
margin-bottom: 10px;
font-weight: 900;
}
#logo {
position: fixed;
top: -1px;
left: 0px;
height: 50px;
width: 50px;
z-index: 1;
}
#serverInviteButton {
position: fixed;
top: 0px;
right: 0px;
margin-top: 5px;
margin-bottom: 5px;
margin-right: 5px;
height: 40px;
width: auto;
background-color: #44cbb1;
border: 2px solid #3d2f33;
border-radius: 10px;
font-weight: bold;
font-style: italic;
}
#serverInviteButton:hover {
background-color: #339481;
}