-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
64 lines (63 loc) · 1018 Bytes
/
style.scss
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
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500&display=swap");
section {
width: 100vw;
height: 100vh;
display: grid;
place-items: center;
font-family: "Jost", sans-serif;
}
#quote-box {
padding: 30px 50px;
background-color: white;
border-radius: 5px;
width: 50vw;
}
h1#text {
text-align: center;
font-size: 2.75rem;
line-height: 36px;
}
#author {
text-align: right;
font-size: 1.75rem;
}
.text_container {
margin-bottom: 20px;
}
.icon_container {
display: flex;
a {
text-decoration: none;
}
}
.icon_div {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 4px;
margin-right: 10px;
opacity: 1;
i {
color: white;
font-size: 1.75rem;
}
&:hover {
opacity: 0.9;
}
}
.quote_btn {
padding: 10px 20px;
border: none;
border-radius: 4px;
color: white;
opacity: 1;
&:hover {
opacity: 0.9;
}
}
.btn_container {
display: flex;
justify-content: end;
}