-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
53 lines (53 loc) · 892 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
/*
Stylesheet for ZeroSteg.
Authored by Jason Kim
August 12, 2019
*/
body {
font-family: "Roboto Slab", serif;
margin: 30px;
font-size: 18px;
}
/* For putting encode/decode divs side by side */
.child {
display: inline-block;
vertical-align: top;
margin-right: 50px;
margin-top: 20px;
}
textarea {
border: 3px solid black;
font-family: "Roboto Slab", serif;
}
.textarea-small {
min-width: 300px;
min-height: 150px;
}
.result-window {
border: 3px solid black;
max-width: 600px;
min-height: 150px;
}
.button-wrap {
text-align: center;
}
button {
margin: auto;
border: none;
text-align: center;
background-color: orange;
color: white;
font-size: 16px;
padding: 15px 30px;
border-radius: 10px;
font-family: "Roboto Slab", serif;
}
button:hover {
border: 3px solid black;
}
a {
color: orange;
}
h1 {
color: orange;
}