blob: 5b316890d170f01c3e8325926deb6065dfc0cdb1 (
plain)
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
|
@use '../NewLightboxStyles.scss' as newstyles;
.newLightboxHeader-container {
width: 100%;
height: 100%;
background: newstyles.$gray-l1;
border-radius: 20px 20px 0px 0px;
padding: 20px;
display: grid;
grid-template-columns: 70% 30%;
grid-template-rows: 50% 50%;
.title-container,
.type-container {
display: flex;
flex-direction: row;
gap: 5px;
justify-content: flex-start;
align-items: center;
}
.title-container {
grid-column: 1;
grid-row: 1;
}
.type-container {
grid-column: 1;
grid-row: 2;
.type {
padding: 2px 7px !important;
background: newstyles.$gray-l2;
}
}
.lb-label {
color: newstyles.$gray-l3;
font-weight: newstyles.$h1-weight;
}
.lb-button {
border: solid 1.5px black;
padding: 3px 5px;
cursor: pointer;
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
transition: 0.2s ease;
gap: 5px;
font-size: newstyles.$body-size;
height: fit-content;
&:hover {
background: newstyles.$gray-l2;
}
&.true {
background: newstyles.$blue-l1;
}
}
&.dark {
background: newstyles.$black;
}
&.light,
&.default {
background: newstyles.$white;
}
}
|