-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyles.css
62 lines (51 loc) · 778 Bytes
/
styles.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
body {
text-align:center;
background-color: #4d4d4d;
font-family: Consolas,monaco,monospace;
color: white;
}
button, input {
font-family: Consolas,monaco,monospace;
margin: 4px;
background-color: #333333;
border: none;
color: #F5F5F5;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
input {
width: 400px;
}
button {
width: 150px;
border: 1px solid white;
}
select {
background-color: white;
width: 200px;
}
canvas {
background-color: black;
margin: 10px;
}
table {
width: 80%;
margin: auto;
}
td {
width: 30%;
}
#status {
background-color: #333333;
width: 100%;
}
#rename {
background-color: white;
color: #333333;
}
.center {
text-align: center;
}