-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
87 lines (72 loc) · 1.35 KB
/
main.css
File metadata and controls
87 lines (72 loc) · 1.35 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
.main {
padding: 20px 10px;
}
.transition {
transition: all 0.5s ease-in;
}
dl {
margin-bottom: 20px;
}
dl dt {
font-size: larger;
}
dl dd {
margin: 10px 0 10px 25px;
}
/* Not fully function :(
.dark-grey svg {
filter: invert(100%);
} */
.mode-switch {
position: fixed; /* Fixed/sticky position */
bottom: 15px; /* Place the button at the bottom of the page */
right: 25px; /* Place the button 30px from the right */
z-index: 999; /* Make sure it does not overlap */
cursor: pointer; /* Add a mouse pointer on hover */
padding: 10px; /* Some padding */
border-radius: 5px; /* Rounded corners */
}
.mode-switch:hover {
background-color: #555; /* Add a dark-grey background on hover */
}
.beat-container {
display: flex;
vertical-align: auto;
}
.text-wrapper {
margin: 0 0.8em 0 0.5em;
}
.text-wrapper-end {
margin: 0 0 0 0;
}
.beat {
animation: .8s infinite beatHeart;
}
@keyframes beatHeart {
0% {
transform: scale(1);
}
25% {
transform: scale(1.1);
}
40% {
transform: scale(1);
}
60% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
/*
.grid-with-link {
background-color: #ccc;
margin-bottom: 16px;
margin-bottom: 1rem;
}
.grid-with-link .cell {
text-align: center;
border: 1px solid #ccc;
padding: 4px 2px;
} */