forked from nettleweb/nettleweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.css
78 lines (67 loc) · 1.23 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
@font-face {
font-family: "Ubuntu Mono";
src: url("res/mono.woff2") format("woff2");
}
@font-face {
font-family: "Ubuntu";
src: url("res/ubuntu.woff2") format("woff2");
}
* {
margin: 0px;
padding: 0px;
font-smooth: never;
-webkit-font-smoothing: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
::selection {
color: #ffffff;
background: #004080;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-thumb {
background: #c0c0c0;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: #b0b0b0;
}
::-webkit-scrollbar-thumb:active {
background: #a0a0a0;
}
body {
position: absolute;
display: block;
width: 100%;
height: 100%;
font-size: 14px;
font-style: normal;
font-family: "Ubuntu", sans-serif;
font-weight: 500;
color: #303030;
overflow: hidden;
background: #ffffff;
accent-color: #004080;
}
input, select, option, textarea, button {
font-size: inherit;
font-style: inherit;
font-family: inherit;
font-weight: 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;
}
hr {
margin: 20px 0px;
border: none;
border-bottom: 1px solid #808080;
}