-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCustom.css
More file actions
78 lines (71 loc) · 1.79 KB
/
Custom.css
File metadata and controls
78 lines (71 loc) · 1.79 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
html{ /* accent red theme */
--FirstBackground: #f5f5f5;
--FirstForeground: #1b1b1b;
--SecondBackground: #ff7043;
--SecondForeground: #f5f5f5;
--ThirdBackground: #dd5332;
--ThirdForeground: #f5f5f5;
--ButtonBackground: #4caf50;
--ButtonForeground: #efefef;
}
html{ /* all black theme */
--FirstBackground: #1a1a1a;
--FirstForeground: #efefef;
--SecondBackground: rgba(255,255,255,0.13);
--SecondForeground: var(--FirstForeground);
--ThirdBackground: rgba(0,0,0,0.4);
--ThirdForeground: var(--FirstForeground);
--ButtonBackground: #4caf50;
--ButtonForeground: #efefef;
}
Select ,input{
max-width:100%;
font-size:2rem;
border-radius:5px;
padding:0px;
box-sizing:border-box;
}
Select:focus{
border-radius: 8px 8px 0px 0px;
}
body{
color: var(--FirstForeground);
background-color: var(--FirstBackground);
}
.FirstLayer , .FirstLayer a:not(.btn){
color: var(--FirstForeground);
background-color: var(--FirstBackground);
}
.SecondLayer , .SecondLayer a:not(.btn){
color: var(--SecondForeground);
background-color: var(--SecondBackground);
}
.ThirdLayer , .ThirdLayer a:not(.btn){
color: var(--ThirdForeground);
background-color: var(--ThirdBackground);
}
.FirstLayer a:not(.btn), .SecondLayer a:not(.btn), .ThirdLayer a:not(.btn){
background-color: rgba(0,0,0,0) ;
}
.btn{
color: var(--ButtonForeground);
background-color: var(--ButtonBackground);
font-size:2rem;
padding: 0px 12px;
box-shadow: 2px 2px 1px rgba(0,0,0,.2);
transition-duration: 0.4s;
}
.btn:hover {
box-shadow: 3px 3px 4px rgba(0,0,0,.5);
}
.Smalltext{
font-size:0.8rem;
}
.card{
border: 1px solid rgba(255,255,255,0.1);
box-shadow: 2px 2px 1px rgba(0,0,0,.2);
transition-duration: 0.4s;
}
.card:hover {
box-shadow: 2px 2px 7px rgba(0,0,0,.5);
}