forked from tris-rivers/random-lyrics-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
76 lines (67 loc) · 1.26 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
74
75
76
body{
background-color: #FA8383;
}
h1{
font-family: Questrial;
color: #FFE4B3;
font-weight: bolder;
margin-top: 10%
}
.box{
padding: 0px 40px 40px 40px;
margin:10% auto auto auto;
border-radius: 3px;
background-color: #FFE4B3;
width: 700px;
display: table;
position: relative;
}
.quote-font{
font-family: Questrial;
font-size: 30px;
margin: 50px;
text-align: center;
color: #623448;
}
.button{
margin: 4px 2px;
border: none;
border-radius: 5px;
padding: 10px 18px;
background-color:#FA8383;
color:#FFE4B3;
font-family: Questrial;
font-size: 16px;
display: block;
transition-duration: .4s;
cursor: pointer;
float: right;
}
.button1{
background-color:#FA8383;
color: #FFE4B3;
}
.button1:hover{
background-color: #FFE4B3;
border: 3px solid #FA8383;
color: #FA8383;
}
.animated {
background-image: url(/css/images/logo.png);
background-repeat: no-repeat;
background-position: left top;
padding-top:95px;
margin-bottom:60px;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
@-webkit-keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}
@keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}