-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
113 lines (113 loc) · 2 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: #5372F0;
}
.wrapper{
width: 605px;
background: #fff;
border-radius: 15px;
padding: 30px 30px 25px;
box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}
header, .content :where(i, p, span){
color: #202842;
}
.wrapper header{
font-size: 35px;
font-weight: 600;
text-align: center;
}
.wrapper .content{
margin: 35px 0;
}
.content .quote-area{
display: flex;
justify-content: center;
}
.quote-area i{
font-size: 15px;
}
.quote-area i:first-child{
margin: 3px 10px 0 0;
}
.quote-area i:last-child{
display: flex;
margin: 0 0 3px 10px;
align-items: flex-end;
}
.quote-area .quote{
font-size: 22px;
text-align: center;
word-break: break-all;
}
.content .author{
display: flex;
font-size: 18px;
margin-top: 20px;
font-style: italic;
justify-content: flex-end;
}
.author span:first-child{
margin: -7px 5px 0 0;
font-family: monospace;
}
.wrapper .buttons{
border-top: 1px solid #ccc;
}
.buttons .features{
display: flex;
margin-top: 20px;
align-items: center;
justify-content: space-between;
}
.features ul{
display: flex;
}
.features ul li{
margin: 0 5px;
height: 47px;
width: 47px;
display: flex;
cursor: pointer;
color: #5372F0;
list-style: none;
border-radius: 50%;
align-items: center;
justify-content: center;
border: 2px solid #5372F0;
transition: all 0.3s ease;
}
.features ul li:first-child{
margin-left: 0;
}
ul li:is(:hover, .active){
color: #fff;
background: #5372F0;
}
ul .speech.active{
pointer-events: none;
}
.buttons button{
border: none;
color: #fff;
outline: none;
font-size: 16px;
cursor: pointer;
padding: 13px 22px;
border-radius: 30px;
background: #5372F0;
}
.buttons button.loading{
opacity: 0.7;
pointer-events: none;
}