-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
45 lines (36 loc) · 915 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
body{
background-image: -webkit-gradient(linear, left top, left bottom, from(orangered), to(purple));
background-image: -webkit-linear-gradient(top, start-color, end-color);
background-image: -moz-linear-gradient(top, start-color, end-color);
background-image: linear-gradient(to bottom, start-color, end-color);
}
button{
font-size: 20px;
}
.quotes{
border: 2px solid black;
width: 50%;
height: 20%;
margin: 0 auto;
background-color: white;
opacity: 0.8;
}
#get-another-quote-button{
background-color: lightcoral;
font-family:monospace;
margin-left: 47%;
margin-top: 17px;
border-radius: 10%;
}
#quote-title{
color: black;
font-weight: bold;
font-size: 18px;
}
#quote-content{
font-size: 20px;
color: black;
font-style: oblique;
width: 100%;
height: 100%;
}