-
Notifications
You must be signed in to change notification settings - Fork 0
/
dark_theme.css
114 lines (112 loc) · 1.94 KB
/
dark_theme.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
112
113
114
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Victor+Mono:ital,wght@0,100..700;1,100..700&display=swap");
*{
color: #c7c7c7;
font-family: 'Comfortaa', helvetica, sans-serif;
}
table.head, table.foot {
width: inherit;
}
td.head-rtitle, td.foot-os {
text-align: right;
}
td.head-vol {
text-align: center;
}
.Nd, .Bf, .Op {
display: inline;
}
.Pa, .Ad {
font-style: italic;
}
.Ms {
font-weight: bold;
}
.Bl-diag > dt {
font-weight: bold;
}
code.Nm, .Fl, .Cm, .Ic, code.In, .Fd, .Fn, .Cd {
font-weight: bold;
font-family: 'Victor Mono', monospace !important;
}
code, pre {
font-family: 'Victor Mono', monospace !important;
}
i, em {
color: #7f7f7f;
}
dt, b, strong {
color: #f0f0f0;
}
hr {
color: #363636;
margin: 5px 0;
}
form{
padding:0;
margin:0;
}
.flexy {
display: flex;
flex-direction: row;
justify-content: center;
}
body, html {
margin: 0;
padding: 0;
height: 100%;
background-color: #1f1e23;
color: #c7c7c7;
}
h1, h2, h3, h4, h5, h6 {
color: #8d53a6;
padding: 0;
margin: 0;
}
section, .head, .foot {
margin: 10px 5px;
padding: 4px 6px;
}
p, dt, table {
margin: 2px 10px;
padding: 5px 0;
}
a {
color: #ff7597;
text-decoration: underline;
}
a:hover {
color: #db335d;
text-decoration: underline;
}
input, textarea {
background-color: #343434;
border: 1px solid #c7c7c7;
padding: 4px;
border-radius: 5px;
margin: 2px;
}
input[type="text"], textarea {
height: inherit;
width: 300px;
}
input[type="submit"] {
background-color: #343434;
font-weight: bold;
cursor: pointer;
}
.flexy{
position: fixed;
z-index: 5;
width: 100%;
padding: 3px 0;
margin: 0;
top: 0;
background-color: #1f1e23;
border-bottom: #7f7f7f 1px solid;
}
.content{
width: calc(100% - 10px);
transform: translateY(40px);
margin: 0;
padding: 0;
}