-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
57 lines (48 loc) · 1.08 KB
/
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
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Raleway', sans-serif;
font-weight: bold;
}
body{
background: #f3282865;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
#quote-box{
position: relative;
width: 80%;
#text{
padding: 1rem;
font-size: 1.5rem;
background-color: #f32828;
margin-bottom: 1rem;
}
#author{
text-align: right;
color: #f32828
}
#bottom{
text-align: left;
margin-top: 1rem;
display: flex;
align-items: center;
#new-quote{
padding: 1rem 2rem;
// background-color: green;
background-color: rgba(0, 0, 0, 0.884);
color: rgba(255, 255, 255, 0.918);
border: none;
margin-right: 1rem;
cursor: pointer;
}
.fa-twitter{
font-size: 1.5rem;
color: black;
}
}
}