-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathstyles.css
More file actions
40 lines (37 loc) · 748 Bytes
/
styles.css
File metadata and controls
40 lines (37 loc) · 748 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
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
#quote-list {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 5px;
}
#quote-container {
background-color: white;
border-radius: 5px;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
min-height: 100px;
padding: 10px 20px;
width: 400px;
display: flex;
align-items: center;
justify-content: center;
}
#new-quote-button {
background-color: #3f51b5;
border: none;
border-radius: 5px;
color: white;
cursor: pointer;
font-size: 16px;
margin-bottom: 20px;
padding: 10px 20px;
text-transform: uppercase;
}