-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
76 lines (61 loc) · 2.38 KB
/
main.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
/*
* Copyright (C) 2024 [Ayama].
* Author: Ayama (https://github.com/1818180)
* This file is part of [contextsaver].
*
* [contextsaver] is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* [contextsaver] is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with [contextsaver]. If not, see <https://www.gnu.org/licenses/>.
*/
:root {
--color: #E1E1E1;
--grey: #b0b0b0;
--yellow-mark: #ffa946eb;
--transition: all 0.3s ease-in 0.1s;
--transition-fast: all 0.2s ease;
--shadow-inner-yellow: inset 4px 5px 20px #ff9925, inset -2px -5px 30px #ffa946eb,
inset -4px 0 rgb(255, 102, 0), inset 6px 0 rgb(255, 102, 0);
--shadow-inner-yellow: inset 4px 5px 20px #ff9925, inset -2px -5px 30px #ffa946eb,
inset -4px 0 rgb(255, 102, 0), inset 6px 0 rgb(255, 102, 0);
--shadow-inner-yellow: inset 4px 5px 20px #ff9925, inset -2px -5px 30px #ffa946eb,
inset -4px 0 rgb(255, 102, 0), inset 6px 0 rgb(255, 102, 0);
--shadow-3D: 0 1px 1px #0000001f, 0 2px 4px #00000014, 0 4px 8px #0000001a, 0 8px 16px #00000014;
--paper-grid: linear-gradient(0deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%,transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%,transparent),
linear-gradient(90deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%,transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%,transparent);
background-size: 55px 55px;
}
.highlighted {
color: rgb(238, 143, 18);
font-weight: bold;
}
.contextSaver {
position: relative;
border-radius: 8px;
padding-inline: 2px;
box-shadow: var(--shadow-3D);
pointer-events:all;
}
.yellow {
background-color: #f6ca89;
}
.blue {
background-color: #a8bfeb;
}
.green {
background-color: #b8dbaa;
}
.red {
background-color: #da9989;
}
.purple {
background-color: #e3d0e7;
}