-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (54 loc) · 918 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html {
width: 100%;
height: 100%;
font-family: 'Courier New';
display: flex;
justify-content: center;
align-items: center;
background-color: #cdb662;
}
.container {
text-align: center;
padding: 20px;
}
#quote-box {
max-width: 600px;
margin: auto;
padding: 20px;
background-color: #cdb662;
}
#quote {
font-size: 28px;
line-height: 1.4;
margin-bottom: 20px;
color: #333333;
}
footer {
position: fixed;
bottom: 0;
width: 100%;
text-align: center;
padding: 10px;
background-color: #cdb662;
font-size: 20px;
}
/* Responsive Design */
@media (max-width: 768px) {
#quote {
font-size: 20px;
}
}
@media (max-width: 480px) {
#quote {
font-size: 18px;
}
.container {
padding: 15px;
}
}