-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
93 lines (82 loc) · 1.53 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
:root {
--nav-height: 2rem;
--nav-padding: 0.2rem;
}
body {
margin: 0;
padding: 0;
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
nav {
display: flex;
justify-content: right;
align-items: flex-end;
height: var(--nav-height);
padding: var(--nav-padding);
margin: 0;
background-color: #211233;
color: #eeeeee;
}
.navbutton {
border: none;
font-size: 1.2rem;
background-color: inherit;
color: inherit;
cursor: pointer;
transition: color ease-in-out 125ms, font-size ease-in-out 125ms;
margin: 0;
padding: 0 0.5rem;
text-align: center;
}
.nava {
border: none;
font-size: 1.2rem;
background-color: inherit;
color: inherit;
cursor: pointer;
transition: color ease-in-out 125ms, font-size ease-in-out 125ms;
margin: 0;
padding: 0;
text-align: center;
}
nav > a {
text-decoration: none;
}
.navbutton:hover {
color: #ffffff;
font-size: 1.3rem;
}
nav > .left {
margin-right: auto;
}
#editor {
position: absolute;
top: calc(var(--nav-height) + calc(var(--nav-padding) * 2));
right: 0;
bottom: 0;
left: 0;
}
#settings {
color: #aaaaaa;
z-index: 1;
position: absolute;
right: 0;
top: calc(var(--nav-height) + calc(var(--nav-padding) * 2));
margin: 1rem;
padding: 1rem;
display: flex;
flex-direction: column;
background-color: #211233;
border: 2px solid #bc13fe;
border-radius: 10px;
width: 10rem;
gap: 1rem;
}
#settings > span {
display: flex;
flex-direction: column;
}
#settings > h3 {
margin: 0.3rem 0;
padding: 0;
}