-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
93 lines (81 loc) · 1.59 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
body {
padding: 0px;
margin: 0px;
overflow: hidden;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#header {
position: absolute;
padding: 0px 15px 0px 35px;
display: flex;
justify-content: space-between;
width: 100%;
box-sizing: border-box;
align-items: center;
}
#logo {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
transition: background-color 100ms linear;
padding: 0px 5px 5px 5px;
margin-top: 5px;
}
a {
text-decoration: none;
}
#logo > .webname {
font-size: 1.5em;
font-family: 'Montserrat', sans-serif;
letter-spacing: 0.125em;
font-weight: bold;
}
#logo > .desc {
letter-spacing: 0.5em;
font-size: 0.7em;
}
#logo:hover {
background-color: rgb(202, 199, 8);
}
#logo > span {
color: white;
padding-left: 5px;
}
#reset {
color: white;
display: inline-block;
border: 1px solid white;
font-weight: bold;
font-size: 0.9em;
padding: 7px 10px;
height: fit-content;
position: relative;
cursor: pointer;
transition: background-color 100ms linear;
}
#reset:hover {
background-color: white;
color: black;
top: -1px;
}
#reset:active {
top: 2px;
background-color: rgb(245, 242, 66);
}
#sidebar {
transform-origin: bottom right;
transform: rotate(-90deg);
right: 5px;
font-size: 0.7em;
color: white;
position: absolute;
width: 100vh;
box-sizing: border-box;
padding-left: 8vh;
text-align: center;
}
#sidebar > a {
text-decoration: none;
color: white;
}