-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.scss
58 lines (49 loc) · 938 Bytes
/
gallery.scss
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
@import "main";
// Gallery Styling
.gallery-parent {
display: flex;
flex-direction: row;
justify-content: center;
}
div.gallery-second {
margin: 5px;
// TODO comment this out once texting is done
// border: 1px solid #ccc;
float: left;
width: 97%;
}
li:hover {
box-shadow: 0px 0px 8px 10px $activeElementCol;
}
.collapsible {
background-color: #ce4257;
/*border: none;*/
outline: none;
width: 100%;
}
.gallery-second ul {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
li {
// TODO comment this out once implemented
// border: 1px solid #777;
list-style-type: none;
margin: 1em;
width: 20em;
height: max-content;
background-color: $buttonCol;
padding: 1em;
}
li img {
width: 100%;
object-fit: contain;
}
.art-post-background {
background-color: $elementSecondCol;
padding: 1em;
}
p {
text-align: center;
}