-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (53 loc) · 906 Bytes
/
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
body {
background-color: #0F0F0F;
color: white;
font-family: "Roboto", "Arial", sans-serif;
font-size: 11.75pt;
margin: auto;
max-width: 1280px;
padding: 20px 10px 200px;
}
a {
color: #62aafc;
text-decoration: none;
}
a:hover { text-decoration: underline; }
p { line-height: 2; }
hr {
border-top: 1px solid #bbb;
border-bottom: 0;
}
.desc { font-weight: bold; }
@media only screen and (min-width: 1024px) {
.two-columns {
display: flex;
align-items: flex-start;
}
.two-columns div {
width: 95%;
}
}
textarea {
outline: none;
}
textarea.code {
width: 95%;
height: 250px;
}
textarea.code.wide {
width: 85%;
height: 60px;
}
textarea, input[type=text], input[type=password] {
background-color: #111;
border: 1px solid #444;
color: white;
padding: 5px;
}
button {
font-size: 12pt;
border: 1px solid #444;
background-color: #111;
color: white;
padding: 5px 15px;
}