-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
73 lines (73 loc) · 1.13 KB
/
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
70
71
72
73
body {
width: 50%;
min-width: 400px;
margin: auto;
text-align: center;
background-color: #212121;
font-family: "Fira Sans", sans-serif;
}
main {
color: #FFF;
}
footer {
font-size: 0.8em;
color: #777;
}
h1 {
font-size: 4em;
margin: 0.2em;
}
h2 {
color: #735BC1;
font-size: 3em;
margin: 0.2em;
}
h3 {
font-size: 1.4em;
margin: 0.4em;
font-weight: 200;
}
a {
color: #735BC1;
text-decoration: none;
}
a:hover {
color: #fff;
}
textarea {
background-color: #dadada;
resize: none;
border: none;
border-radius: 2px;
font-family: "Fira Mono", monospace;
padding: 0.3em;
font-size: 0.8em;
margin: 0.4em;
opacity: 0.7;
transition: opacity 0.2s;
}
textarea:hover {
opacity: 1
}
p {
margin: 0.2em;
}
#input {
width: 100%;
}
#output {
width: 100%;
}
button {
font-family: "Fira Sans", sans-serif;
font-size: 1em;
background-color: #735BC1;
color: #fff;
text-transform: uppercase;
cursor: pointer;
margin: 0.4em;
border: none;
border-radius: 2px;
padding: 4px 16px 4px 16px;
min-width: 64px;
}