-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
114 lines (96 loc) · 1.58 KB
/
main.css
File metadata and controls
114 lines (96 loc) · 1.58 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
html,
body {
height: 100%;
margin: 0;
background-color: black;
color: white;
}
footer {
padding: 48px 0 24px 0;
}
.background-image {
height: 100%;
background: url('tfz-enso.png') center center no-repeat;
background-size: contain;
position: absolute;
width: 100%;
z-index: -1;
}
.nowrap {
white-space: nowrap;
}
.btn.btn-lg.btn-secondary.mt-3 {
text-transform: uppercase;
letter-spacing: 2px;
}
.streaming-service-logo {
height: 50px;
margin: 0 10px;
}
.album-section {
margin-top: 48px;
padding-bottom: 48px;
border-bottom: 1px dotted grey;
}
.album-section:first-child {
border-top: 1px dotted grey;
padding-top: 48px;
}
.album-cover {
width: 180px;
height: 180px;
margin: 0 auto;
display: block;
border: 1px dotted grey;
margin-bottom: 16px;
cursor: pointer;
}
.album-title {
text-align: center;
font-size: 24px;
}
.cards-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 12px;
}
.tarot-card {
width: 100px;
height: 172px;
background-size: cover;
cursor: pointer;
border: 1px dotted grey;
}
.tarot-card-container {
display: flex;
flex-direction: column;
align-items: center;
}
.card-name {
color: white;
font-size: 11px;
text-align: center;
}
.modal-header button.close {
color: white;
}
.modal-content {
background-color: #111;
color: white;
text-align: left;;
}
.modal-body p:first-of-type {
margin-top: 24px;
}
.top-image {
width: 240px;
height: 240px;
object-fit: cover;
margin: 0 auto;
display: block;
}
.modal-body img {
width: 100%;
height: auto;
}