-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (53 loc) · 836 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
body {
margin: 0;
background: #061004;
color: #747474;
font-style: italic;
font-size: 16px;
}
h1 {
margin-top: 0;
padding: 0 7% 0 0;
text-align: right;
border-bottom: dashed #747474 2px;
font-variant: all-petite-caps;
font-size: 24px;
}
.container {
text-align: center;
}
.inputs, .buttons {
margin: 6px 0 12px;
text-align: center;
}
input[type=text] {
width: 120px;
padding: 3px;
margin-right: 8px;
background: black;
color: #eee;
border: solid 1px #747474;
}
button {
color: #747474;
background: black;
border: solid 1px #300e96;
}
button:hover {
border-color: 603ec6;
}
button:active {
color: black;
background: #747474;
border: black;
}
canvas {
width: 90%;
margin: 10px;
border: double 4px #300e96;
}
@media (min-width: 620px) {
canvas {
width: 42%;
}
}