forked from yell0wfl4sh/Image-gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (68 loc) · 1009 Bytes
/
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
:root {
--spacing: 10px;
--blur: 10px;
--base: #ffc600;
}
html,body{
height: 100%;
}
h1 {
font-family: helvetica, arial, sans-serif;
text-align: center;
}
body {
background-color: black;
color: white;
}
.full-img {
position: relative;
display: block;
margin:0 auto;
}
.dislay {
position: absolute;
top: 0;
left: 0;
background-color: rgba(0,0,0,0);
}
button {
border: 0;
background: rgba(150,150,150,0.6);
text-shadow: 1px 1px 1px white;
border: 1px solid #999;
position: absolute;
cursor: pointer;
margin-left: 2%;
top: 2%;
}
.thumb-bar img {
display: block;
width: 100%;
cursor: pointer;
opacity: 0.3;
}
#image{
padding: var(--spacing);
background: var(--base);
filter: blur(var(--blur));
width:100%;
}
.container-fluid{
margin-top: -1%;
}
.main{
padding: 0px;
overflow: hidden;
}
.side{
padding: 0px;
}
#updir{
z-index: 1;
margin-left: 50%;
}
#downdir{
z-index: 1;
margin-left: 50%;
margin-top: 52%
}