-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
103 lines (90 loc) · 1.42 KB
/
style.css
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
body{
height: 100vh;
width:100%;
margin: 0px;
overflow: hidden;
}
.img{
margin:10px;
}
.thumbnail{
margin:20px;
}
.main{
display: flex;
flex-flow: column;
height: calc(100% - 75px);
}
#results-container{
display: block;
overflow-y: auto;
flex-grow: 1;
}
#maximized-container{
display: block;
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: calc(100% - 30px);
z-index: 2;
text-align: center;
background-color: rgba(0,0,0, 0.8);
overflow-y: scroll;
margin-top:30px;
}
#centered-container{
z-index: 20;
position: relative;
top: 5%;
margin:auto;
width: fit-content;
height: fit-content;
max-width: 90%;
}
#maximized-item{
max-height: calc(100vh - 150px);
max-width: 100%;
}
.image-button{
display: block;
text-align: right;
color:#FFF;
margin-right:0px;
margin-top:3px;
max-width: 100%;
}
#tag-list{
display: block;
color: #FFF;
background-color: #444;
border-radius: 3px;
border: solid #555 1px;
text-align: left;
max-width: 100%;
margin-top: 40px;
margin-bottom: 10px;
padding:15px 20px;
}
.goto-scroller{
position: fixed;
bottom: 20px;
right: 50px;
background-color: #e05188;
color:#FFF;
border-radius: 300px;
padding: 10px 20px;
}
.goto-scroller:hover{
text-decoration: none;
color: #FFF;
}
.to-tags-text{
display: inline-block;
vertical-align: middle;
line-height: 30px;
}
.tag{
margin:5px;
padding:0px;
}