-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (47 loc) · 846 Bytes
/
Copy pathstyle.css
File metadata and controls
49 lines (47 loc) · 846 Bytes
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
body {
height: 100%;
margin: 0;
padding: 0;
}
.card {
width: 80%;
min-height: 50px;
margin-left: auto;
margin-right: auto;
margin-bottom: 30px;
padding: 20px;
border-radius: 5px;
box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}
.light-mode body {
background-color: #d3e7ff;
color: black;
}
.light-mode .card {
background-color: white;
color: black;
}
.dark-mode body {
background-color: #1a1a1a;
color: white;
}
.dark-mode .card {
background-color: #2a2a2a;
color: white;
}
.dark-mode * {
color: white;
}
.button {
padding: 10px;
border-radius: 5px;
border: none;
cursor: pointer;
margin: 5px;
}
.light-mode .button {
background-color: white;
}
.dark-mode .button {
background-color: rgb(66, 75, 83);
}