-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
99 lines (88 loc) · 1.55 KB
/
index.css
File metadata and controls
99 lines (88 loc) · 1.55 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
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
@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:wght@400;700&family=Ubuntu:wght@300;400;500;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Ubuntu', sans-serif;
}
body {
background-color: #22313f;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.quote-wrapper {
width: 450px;
height: 370px;
margin: 0 10px;
}
.quote-heading {
text-align: center;
margin-bottom: 30px;
}
.quote-heading h2 {
font-family: 'Lobster Two', cursive;
font-weight: 400;
color: #fff;
}
.quote-body {
width: 100%;
height: 220px;
padding: 50px 35px;
background-color: #fff;
border-radius: 5px;
}
.icon-quote {
text-align: center;
font-size: 18px;
color: #747d8c;
height: 42px;
overflow: auto;
}
.icon {
margin-right: 10px;
}
.author {
text-align: right;
margin-top: 15px;
}
.quote-buttons {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 12px;
border-top: 1px solid #93a0ac;
padding: 7px 0;
}
.social a {
font-size: 40px;
color: #455261;
transition: 0.3s ease;
}
.social a:hover {
color: #00acee;
}
.btn button {
border: none;
outline: none;
padding: 10px 15px;
background-color: #455261;
color: #fff;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
.quote-buttons button:hover {
background-color: #eccc68;
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background-color: #ddd;
}
::-webkit-scrollbar-thumb {
background-color: #2f3542;
border-radius: 5px;
}