-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
111 lines (108 loc) · 1.92 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
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
:root {
--shadow-dark:0 6px 10px rgba(40,40,40,0.2);
--shadow-darker:0 6px 10px rgba(40,40,40,0.4);
--font-family:"Helvetica Neue", "Lucida Grande", "Arial", "Verdana", "Tahoma", sans-serif;
}
html {
font-family:var(--font-family);
}
body {
background:rgb(255,255,255);
color:rgb(75,75,75);
margin:0;
padding:0;
}
button, input {
border:none;
outline:none;
transition:background 0.25s, color 0.25s;
}
a {
text-decoration:none;
color:rgb(0,150,255);
}
.noselect {
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
outline:none;
}
.hidden {
display:none;
visibility:hidden;
position:absolute;
z-index:-1;
}
::-webkit-scrollbar {
display:block;
width:4px;
background:rgba(60,60,60,0);
}
::-webkit-scrollbar-thumb {
border-radius:5px;
background:rgb(150,150,150);
}
::-webkit-scrollbar-thumb:hover {
background:rgb(100,100,100);
}
::-webkit-scrollbar-track {
background:rgb(210,210,210);
}
.action-button {
background:rgb(0,125,255);
color:rgb(255,255,255);
padding:10px;
font-size:20px;
font-weight:bold;
border-radius:20px;
margin:20px;
box-shadow:var(--shadow-dark);
transition:box-shadow 0.25s;
cursor:pointer;
}
#desktop .action-button:hover {
box-shadow:var(--shadow-darker);
}
.section {
box-shadow:var(--shadow-dark);
background:rgb(240,240,240);
width:calc(100% - 40px - 20px);
margin:0 auto 20px auto;
border-radius:10px;
padding:10px;
}
.section .action-button {
margin:20px 0 10px 0;
}
.action-button-wrapper {
text-align:right;
}
.hint {
font-size:20px;
color:rgb(100,100,100);
display:block;
}
.input-wrapper .hint {
font-size:16px;
color:rgb(125,125,125);
}
.input-wrapper {
display:block;
}
.label {
display:block;
font-size:20px;
color:rgb(0,125,255);
margin:10px 0 10px 0;
}
.input {
background:rgb(75,75,75);
display:block;
padding:10px;
outline:none;
border-radius:10px;
color:rgb(255,255,255);
font-size:20px;
}