-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (52 loc) · 855 Bytes
/
style.css
File metadata and controls
73 lines (52 loc) · 855 Bytes
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
.header_container{
width: 100%;
height: 100px;
background-color:#ccd96c;
padding: 10px;
border-bottom: solid 3px #40382a;
}
.header h1{
font-family: 'Pacifico', cursive;
font-size: 5em;
color:#40382a;
margin: auto;
}
p{
margin-top: 30px;
}
.words{
font-size: 1.2em;
}
.rows{
margin: 10px;
border-radius: 5px;
}
.submitBtn{
border-radius: 10px;
background-color: #73486c;
color: white;
width: 15%;
margin-left:auto;
margin-right: auto;
margin-bottom: 60px;
-webkit- transition: background-color 0.5s ease;
transition: background-color 0.5s ease;
}
.btnContainer{
margin-top:15px;
}
.submitBtn:hover {
background-color: rgba(115, 72, 108, .75);
}
#story{
width: 75%;
height: auto;
border:solid #40382a 5px;
padding: 10px;
border-radius:5px;
margin:0 auto 0 auto;
clear: both;
}
strong{
color:#499baa;
}