-
-
Notifications
You must be signed in to change notification settings - Fork 286
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (51 loc) · 860 Bytes
/
style.css
File metadata and controls
57 lines (51 loc) · 860 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
body {
background-color: #fba21c;
font-family: sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
background-color: white;
width: 70%;
max-width: 800px;
padding: 50px 50px 80px 50px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
position: relative;
}
h1 {
display: none;
}
.quote-icon {
width: 45px;
float: left;
margin-right: 15px;
margin-top: -10px;
}
#quote {
font-size: 32px;
color: #fba21c;
margin: 0;
line-height: 1.4;
}
#author {
color: #fba21c;
font-size: 20px;
font-weight: bold;
text-align: right;
margin-top: 30px;
margin-bottom: 30px;
}
#new-quote {
background-color: #fba21c;
color: white;
border: none;
padding: 12px 24px;
font-size: 18px;
cursor: pointer;
position: absolute;
bottom: 40px;
right: 50px;
}