forked from nettleweb/nettleweb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstandard.css
More file actions
74 lines (63 loc) · 1.12 KB
/
standard.css
File metadata and controls
74 lines (63 loc) · 1.12 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
@import url("res/ubuntu/ubuntu.css");
* {
margin: 0px;
padding: 0px;
}
*:hover, *:active {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar {
height: 10px;
width: 10px;
}
::-webkit-scrollbar-track {
border-style: solid;
border-width: 1px;
border-color: #d0d0d0;
border-radius: 5px;
background: #ffffff;
}
::-webkit-scrollbar-thumb {
border-radius: 5px;
background: #d0d0d0;
}
::-webkit-scrollbar-thumb:hover {
background: #c0c0c0;
}
::-webkit-scrollbar-thumb:active {
background: #a0a0a0;
}
body {
position: absolute;
display: block;
width: 100%;
height: 100%;
overflow: hidden;
font-size: 14px;
font-family: "Ubuntu Condensed";
font-weight: 500;
font-style: normal;
color: #323232;
accent-color: #5a97f3;
background-color: #5a97f3;
}
input, select, option, textarea, button {
font-size: inherit;
font-family: inherit;
font-weight: inherit;
font-style: inherit;
color: inherit;
background: rgba(0, 0, 0, 0);
}
a {
color: unset;
cursor: pointer;
text-decoration: underline;
}
#-_0 {
position: relative;
display: block;
width: fit-content;
height: fit-content;
margin: 10px;
}