-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (59 loc) · 1.46 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
body{
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 100vh;
align-items: center;
justify-items: center; /* adjusted */
}
:root {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none;
--active-brightness: 0.85;
--border-radius: 5px;
--box-shadow: 2px 2px 10px;
--color-accent: #118bee15;
--color-bg: #f4ded5;
--color-bg-secondary: #52443d;
--color-link: #52443d;
--color-secondary: #920de9;
--color-secondary-accent: #1e12250a;
--color-shadow: #f4f4f4;
--color-table: #118bee;
--color-text: #52443d;
--color-text-secondary: #341100;
--font-family: monospace, monospace;
--hover-brightness: 1.2;
--justify-important: center;
--justify-normal: left;
--line-height: 1.5;
--width-card: 285px;
--width-card-medium: 460px;
--width-card-wide: 800px;
--width-content: 1080px;
--text-shadow:0 0 0px hsl(154 84% 70%);
text-shadow: var(--text-shadow);
}
i{
font-style:normal;
}
i,b{
box-shadow: var(--text-shadow);
}
input{
background:transparent;
color:var(--color-link);
text-shadow: var(--text-shadow);
border:0;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
text-shadow: var(--text-shadow);
outline: none;
color:var(--color-text-secondary);
}