-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
61 lines (59 loc) · 926 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
html, body {
font-family: Trebuchet MS;
background-color: #eff2f7;
}
#title{
text-align: center;
text-transform: uppercase;
color: #2d2e30;
font-size: 26px;
}
#container{
font-family: helvetica;
position: relative;
align-self: center;
background-color: white;
color: #686a6d;
border-radius: 30px;
margin-left: 50px;
margin-right: 50px;
margin-top:-30px;
min-width: 400px;
}
#content{
padding-left: 50px;
padding-right: 50px;
padding-top: 20px;
}
#form{
width:80%;
}
#form > * {
margin-top: 10px;
padding: 4px;
font-size: 16px;
}
textarea{
width: 100%;
height: 150px;
font-size:16px;
}
#submit{
position: relative;
display: block;
float: right;
}
#output{
position: relative;
display: block;
overflow-wrap: break-word;
margin-top: 40px;
padding-bottom:20px;
}
.readingFrame div {
background-color: #ebf4ef;
padding:5px;
}
.readingFrame div:nth-child(odd){
background-color: #f2f9f6;
}