-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (52 loc) · 1.52 KB
/
style.css
File metadata and controls
57 lines (52 loc) · 1.52 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
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Eczar&family=Fira+Code:wght@300;400;500;600;700&display=swap');
body {
font-family: "Fira Code", monospace;
display: flex;
/* Body height should be restricted to the viewport size, minus the top and bottom padding */
height: calc(100vh - 12px - 12px);
font-size: 17vh;
padding: 12px;
}
#albumimage {
box-shadow: #000 0px 0 12px, #000 0px 0 12px, #000 0px 0 12px;
border-radius: 12px;
flex-shrink: 0;
}
#verticalstack {
display: flex;
flex-direction: column;
flex-grow: 1;
justify-content: space-evenly;
overflow: hidden;
min-width: 0;
}
#topLabel {
color: hsl(34deg 75% 72%);
text-shadow: #000 0px 0 12px, #000 0px 0 12px, #000 0px 0 12px, #000 0px 0 12px, #000 0px 0 12px, #000 0px 0 12px, #000 0px 0 12px, #000 0px 0 12px, #000 0px 0 12px;
font-weight: 600;
padding: 12px;
margin-top: 0;
margin-bottom: 0;
margin-left: 8px;
animation-delay: 0.05s;
text-overflow: ellipsis;
white-space: nowrap;
}
#bottomLabel {
color: #ffffff;
text-shadow: #000 0px 0 12px, #000 0px 0 12px, #000 0px 0 12px, #000 0px 0 12px, #000 0px 0 12px, #000 0px 0 12px, #000 0px 0 12px, #000 0px 0 12px, #000 0px 0 12px;
font-weight: 400;
padding-left: 12px;
padding-bottom: 20px;
padding-right: 5px;
margin-left: 8px;
margin-top: 0;
margin-bottom: 0;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
p {
overflow: hidden;
}