forked from Dezenix/frontend-html-css-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (71 loc) · 1.33 KB
/
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
65
66
67
68
69
70
71
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Dancing Script', cursive;
}
:root{
--primary-color: #0a27aa;
--secondary-color: #db6474;
}
.bdy{
background-color: rgb(152, 152, 216);
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.container{
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
box-shadow: 0 2px 8px rgba(0,0,0,6);
border-radius: 10px;
width: 600px;
background-color: rgba(255,255, 255, 0.3);
margin: 10px;
}
.fa-quote-left{
font-size: 60px;
color: var(--secondary-color);
}
.fa-quote-right{
font-size: 60px;
color: var(--secondary-color);
}
.quote{
text-align: center;
font-style: italic;
font-size: 40px;
color: var(--primary-color);
}
.author{
color: var(--primary-color);
font-size: 30px;
}
hr{
margin: 10px 0;
width: 60%;
border: 1px solid #364ba788;
}
.buttons{
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
.fa-brands{
text-decoration: none;
font-size: 20px;
padding: 10px;
color: var(--primary-color);
}
.buttons button{
background-color: var(--primary-color);
border: none;
font-size: 20px;
color: white;
cursor: pointer;
padding: 10px;
}