-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
56 lines (49 loc) · 744 Bytes
/
styles.css
File metadata and controls
56 lines (49 loc) · 744 Bytes
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
body {
background: #333;
color: #eee;
}
.container {
padding: 24px 0;
}
.alert {
width: 100%;
}
a {
color: inherit;
}
#livefeed {
background: #252525;
border: none;
border-bottom: 1px solid black;
width: 100%;
padding: 4px 8px;
font-family: monospace;
color: white;
font-size: 18px;
margin-bottom: 16px;
}
#output {
background: #252525;
border: none;
border-bottom: 1px solid black;
width: 100%;
padding: 4px 8px;
font-family: monospace;
height: 300px;
color: white;
font-size: 16px;
}
button {
border: none;
background: transparent;
font-size: 32px;
cursor: pointer;
outline: transparent;
width: 50px;
height: 50px;
float: left;
}
#vc:hover {
background-color: rgba(255, 255, 255, 0.1);
cursor: help;
}