This repository was archived by the owner on Nov 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
143 lines (142 loc) · 2.58 KB
/
styles.css
File metadata and controls
143 lines (142 loc) · 2.58 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300&family=Noto+Sans:wght@300&display=swap');
:root {
/*Uses Catppuccin colour palette as specified by the Catppuccin design guidelines.
Catppuccin is liscenesed under the MIT liscense and is copyright of the Catppuccin Organization*/
/*Black0|White0*/
--base: rgb(22, 19, 32);
/*Black2|White2*/
--overlay: rgb(30, 30, 46);
/*Lavender*/
--text: rgb(201, 203, 255);
/*Blue*/
--accent: rgb(245, 224, 220);
/*Maroon*/
--alert: rgb(232, 162, 175);
}
body {
background-color: var(--base);
color: var(--text);
font-family: 'Fira Code';
margin: 0;
}
h1 {
color: var(--accent);
}
h2 {
color: var(--accent);
}
h3 {
color: var(--accent);
}
p {
}
input {
background-color: var(--base);
color: var(--text);
border-style: none;
border-bottom-style: solid;
border-bottom-color: var(--accent);
border-bottom-width: 1px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
font-family: 'Fira Code', monospace;
}
a {
text-decoration: none;
color: var(--accent);
}
#title {
display: inline-block;
font-size: 3em;
margin-left: 10px;
margin-top: 10px;
}
#title:hover {
text-decoration: underline;
}
#title:hover::before {
content: '< ';
text-decoration: underline;
}
#topBar {
background-color: var(--overlay);
height: 100px;
width: 100%;
display: block;
position: absolute;
}
#topBar span {
font-size: 1.5em;
}
#topBar img {
width: 50px;
height: auto;
position: absolute;
right: 10px;
top: 10px;
margin-top: 10px;
}
#loginBox {
position: absolute;
background-color: var(--overlay);
height: 90%;
width: 60%;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
z-index: 10;
border-color: var(--accent);
border-style: solid;
padding: 5px;
border-radius: 15px;
}
#loginBox h2 {
text-align: center;
}
#loginBox label {
margin-left: 20px;
}
.warning {
color: var(--alert);
display: none;
text-align: center;
}
.button {
background-color: var(--base);
display: block;
margin-top: 1em;
margin-bottom: 1em;
width: 20%;
border-style: solid;
padding: 2px;
cursor: pointer;
border-width: 1px;
color: var(--accent);
border-radius: 5px;
}
.button:hover {
text-decoration: underline;
transform: scale(1.05);
margin-left: 4px;
}
#serviceContainer {
position: absolute;
top: 60%;
left: 50%;
transform: translateX(-50%);
width: 40%;
height: 20%;
}
#serviceContainer div {
margin-left: 10px;
margin-right: 10px;
background-color: var(--overlay);
border-color: var(--accent);
border-style: solid;
border-radius: 5px;
display: block;
border-width: 1px;
position: relative;
height: 100%;
width: 50%;
}