-
Notifications
You must be signed in to change notification settings - Fork 0
/
light-mode.css
74 lines (65 loc) · 1.3 KB
/
light-mode.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
body {
font-family: 'Roboto Mono', monospace;
background-color: #F4F4F4;
color: #636363;
text-align: center;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.container {
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 20px;
}
.quote-container {
margin-bottom: 20px;
max-width: 650px;
}
#quote {
font-size: 14px;
}
#author {
font-style: italic;
margin-top: 10px;
}
.social-icons-container {
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
}
.social-icons-container img {
display: block;
width: 25px;
height: 25px;
margin: 0 5px;
cursor: pointer;
/* Invert the social icons */
filter: invert(1) opacity(0.6);
}
#new-quote-btn {
font-family: 'Roboto Mono', monospace;
font-size: 15px;
padding: 15px 15px;
background-color: #F4F4F4;
color: #636363;
border: 2px solid #636363;
cursor: pointer;
margin: 0 auto;
left: 0;
right: 0;
border-radius: 50px;
position: sticky;
bottom: 100px;
width: 150px;
}
#new-quote-btn:hover {
background-color: #636363;
color: #F4F4F4;
}