-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
69 lines (59 loc) · 847 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
66
67
68
69
html {
background-color: #1e1e1e;
color: #fff;
}
body,
html {
margin: 0;
padding: 0;
}
body {
display: flex;
flex: 1;
flex-direction: column;
font-family:
"Segoe UI",
Roboto,
Oxygen,
Ubuntu,
Cantarell,
"Fira Sans",
"Droid Sans",
"Helvetica Neue",
sans-serif;
}
h1 {
padding: 0;
margin: 0;
margin-bottom: 10px;
}
#content {
background-color: #4d5564;
align-self: center;
padding: 20px;
margin-top: 20px;
border: 1px solid #000;
}
#plugins {
display: table;
border-spacing: 10px;
}
#plugins-header {
display: table-row;
}
#plugins-header div {
display: table-cell;
font-weight: bold;
}
.plugin {
display: table-row;
}
.plugin div {
display: table-cell;
}
code {
background-color: #333;
border-radius: 3px;
display: inline-block;
padding: 2px 5px;
}