-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (95 loc) · 3.39 KB
/
style.css
File metadata and controls
115 lines (95 loc) · 3.39 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
*{
font-family: "Roboto", Times, serif;
}
:root {
--md-sys-color-primary: rgb(101 85 143);
--md-sys-color-surface-tint: rgb(103 80 164);
--md-sys-color-on-primary: rgb(255 255 255);
--md-sys-color-primary-container: rgb(234 221 255);
--md-sys-color-on-primary-container: rgb(33 0 93);
--md-sys-color-secondary: rgb(98 91 113);
--md-sys-color-on-secondary: rgb(255 255 255);
--md-sys-color-secondary-container: rgb(232 222 248);
--md-sys-color-on-secondary-container: rgb(29 25 43);
--md-sys-color-tertiary: rgb(125 82 96);
--md-sys-color-on-tertiary: rgb(255 255 255);
--md-sys-color-tertiary-container: rgb(255 216 228);
--md-sys-color-on-tertiary-container: rgb(49 17 29);
--md-sys-color-error: rgb(179 38 30);
--md-sys-color-on-error: rgb(255 255 255);
--md-sys-color-error-container: rgb(249 222 220);
--md-sys-color-on-error-container: rgb(65 14 11);
--md-sys-color-background: rgb(254 247 255);
--md-sys-color-on-background: rgb(29 27 32);
--md-sys-color-surface: rgb(253, 236, 255);
--md-sys-color-on-surface: rgb(29 27 32);
--md-sys-color-surface-variant: rgb(231 224 236);
--md-sys-color-on-surface-variant: rgb(73 69 79);
--md-sys-color-outline: rgb(121 116 126);
--md-sys-color-outline-variant: rgb(202 196 208);
--md-sys-color-shadow: rgb(0 0 0);
--md-sys-color-scrim: rgb(0 0 0);
--md-sys-color-inverse-surface: rgb(50 47 53);
--md-sys-color-inverse-on-surface: rgb(245 239 247);
--md-sys-color-inverse-primary: rgb(208 188 255);
--md-sys-color-primary-fixed: rgb(234 221 255);
--md-sys-color-on-primary-fixed: rgb(33 0 93);
--md-sys-color-primary-fixed-dim: rgb(208 188 255);
--md-sys-color-on-primary-fixed-variant: rgb(79 55 139);
--md-sys-color-secondary-fixed: rgb(232 222 248);
--md-sys-color-on-secondary-fixed: rgb(29 25 43);
--md-sys-color-secondary-fixed-dim: rgb(204 194 220);
--md-sys-color-on-secondary-fixed-variant: rgb(74 68 88);
--md-sys-color-tertiary-fixed: rgb(255 216 228);
--md-sys-color-on-tertiary-fixed: rgb(49 17 29);
--md-sys-color-tertiary-fixed-dim: rgb(239 184 200);
--md-sys-color-on-tertiary-fixed-variant: rgb(99 59 72);
--md-sys-color-surface-dim: rgb(222 216 225);
--md-sys-color-surface-bright: rgb(254 247 255);
--md-sys-color-surface-container-lowest: rgb(255 255 255);
--md-sys-color-surface-container-low: rgb(247 242 250);
--md-sys-color-surface-container: rgb(243 237 247);
--md-sys-color-surface-container-high: rgb(236 230 240);
--md-sys-color-surface-container-highest: rgb(230 224 233);
--md-extended-color-custom-color-color: rgb(58 96 143);
--md-extended-color-custom-color-on-color: rgb(255 255 255);
--md-extended-color-custom-color-color-container: rgb(211 227 255);
--md-extended-color-custom-color-on-color-container: rgb(0 28 57);
}
html, body {
margin: 0;
padding: 0;
}
canvas {
display: block;
}
#sketch-container{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
#searchList{
list-style-type: none;
font-size: 18px;
display: none;
padding: 10px 10px, 0 , 0;
margin-top: 15px;
border-radius: 8px;
}
#searchDiv{
width: 20%;
height: auto;
border-radius: 5px;
padding: 5px;
background-color: rgba(255, 255, 255, 0.5);
margin: 10px;
}
#searchList li {
padding-left: 15px;
}
#searchDiv #searchList li:hover {
background-color: #eee !important; /* Use !important to override other styles */
}