-
Notifications
You must be signed in to change notification settings - Fork 0
/
Common.css
83 lines (74 loc) · 1.16 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
body
{
font-size: 16px;
font-family: Roboto, "Helvetica Neue", sans-serif;
background-color: rgb(49,51,56);
color: rgb(240,242,244);
padding: 0px;
margin: 0px;
}
code
{
display: inline-block;
white-space: pre;
font-family: monospace;
background-color: rgb(40,40,40);
padding-left: 4px;
padding-right: 4px;
}
.code_block
{
display: block;
background-color: white;
color: black;
padding: 10px;
overflow-x: auto;
white-space: nowrap;
line-height: 175%;
}
a
{
color: inherit;
}
input
{
color: inherit;
background-color: inherit;
font-family: inherit;
font-size: inherit;
}
h1
{
text-align: center;
font-size: 65px;
padding: 0px;
margin: 0px;
}
.nav-bar-logo
{
font-family: monospace;
font-size: 40px;
vertical-align: middle;
margin: 0px;
padding: 0px;
font-weight: bold;
}
.nav-bar-logo-link
{
display: inline-block;
vertical-align: middle;
text-decoration: none;
width: 50px;
height: 50px;
}
.nav-bar-path
{
font-family: monospace;
font-size: 40px;
margin: 0px;
padding: 0px;
}
.pagebody
{
padding: 25px;
}