-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (51 loc) · 1.06 KB
/
style.css
File metadata and controls
57 lines (51 loc) · 1.06 KB
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 {
display: flex;
justify-content: center;
align-items: center;
margin: 0;
color: rgb(26, 26, 26);
font-weight: 700;
font-family: Verdana, Geneva, Tahoma, sans-serif;
text-align: center;
height: 100vh;
background-color: rgba(137, 43, 226, 0.363);
}
.quote-container {
width: auto;
max-width: 900px;
border-radius: 10px;
background-color: rgba(255, 255, 255, 0.4);
box-shadow: 0 10px 10px 10px rgba(0, 0, 0, 0.199);
padding: 20px 30px;
}
.quote-text {
font-size: 2.75rem;
}
.quote-author {
margin-top: 15px;
font-size: 2em;
font-weight: 400;
font-style: italic;
}
.button-container {
margin-top: 15px;
display: flex;
justify-content: space-between;
}
.button-container button {
cursor: pointer;
font-size: 1.2rem;
height: 2.5em;
border: none;
border-radius: 10px;
color: whitesmoke;
background-color: #657786;
outline: none;
padding: 0.5rem 1.8rem;
box-shadow: 0 5px rgba(0, 0, 0, 0.151);
transition: all 0.2s ease-in;
}
.button-container button:active{
transform: translateY(5px);
box-shadow: none;
}