forked from nettleweb/nettleweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.css
89 lines (78 loc) · 1.53 KB
/
common.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
@font-face {
font-family: "Ubuntu";
font-style: normal;
font-weight: normal;
font-stretch: normal;
src: url("res/ubuntu.woff2") format("woff2");
}
@font-face {
font-family: "Ubuntu Condensed";
font-style: normal;
font-weight: normal;
font-stretch: normal;
src: url("res/ubuntu-condensed.woff2") format("woff2");
}
@font-face {
font-family: "Ubuntu Mono";
font-style: normal;
font-weight: normal;
font-stretch: normal;
src: url("res/ubuntu-mono.woff2") format("woff2");
}
* {
margin: 0px;
padding: 0px;
font-smooth: never;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-font-smoothing: none;
}
::-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%;
font-size: 14px;
font-family: "Ubuntu";
font-weight: 500;
font-style: normal;
color: #323232;
accent-color: #005a5a;
background-color: #ffffff;
}
input, select, option, textarea, button {
font-size: inherit;
font-family: inherit;
font-weight: inherit;
font-style: inherit;
font-stretch: inherit;
font-variant: inherit;
color: inherit;
background: rgba(0, 0, 0, 0);
box-sizing: content-box;
}
a {
color: unset;
cursor: pointer;
text-decoration: underline;
}