-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
42 lines (39 loc) · 775 Bytes
/
main.css
File metadata and controls
42 lines (39 loc) · 775 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
body{
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #ffd0a8;
color: #333;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: 400;
text-transform: capitalize;
}
.container{
text-align: center;
padding: 2rem;
border-radius: 5px;
background-color: #fff;
flex: 0 0 80%;
}
#quoteBtn{
border: none;
color: #fff;
background: #d89156;
font-size: 1.3rem;
padding: 0.25rem 0.5rem;
border-radius: 7px;
cursor: pointer;
}
#quoteBtn:hover{
color: #ffd000;
}
blockquote{
background: #f9f9f9;
border-left: 10px solid #fcdbbf;
margin: 1.5rem;
padding: 0.5rem;
}
#quoteAuthor{
color: #ffd000;
}