-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
157 lines (135 loc) · 3.04 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
body {
background: #485563; /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #29323c, #485563); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #29323c, #485563); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.groups-menu {
position:fixed;
height: 40px;
display:block;
width: 100%;
z-index:9;
text-align:center;
color: #f2f2f2;
padding: 10px 0 0 0;
top: 0px;
background: #29323c; /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #29323c, #485563, #29323c);
background: linear-gradient(to left, #29323c, black, #485563);
}
.menu-item {
padding: 5px;
}
.menu-link {
color: lightblue;
font-family: 'Cinzel', sans-serif;
text-decoration: none;
}
.menu-button {
color: green;
font-family: 'Cinzel', sans-serif;
text-decoration: none;
padding: 2px;
}
.router-link-active {
color: white;
font-weight: bold;
font-size: 110%;
}
.page {
position:absolute;
top:50px;
bottom:0;
left:0;
right:0;
padding: 10px;
padding-bottom: 40px;
}
.piece { /* THE image */
width:100%;
height:100%;
object-fit:contain;
filter: drop-shadow(0px 0px 2px rgba(255,255,255,.5)) drop-shadow(0px 0px 10px rgba(0,0,0,.3));
}
.title {
position: absolute;
left: 0;
bottom: 0;
width:100%;
font-size: 150%;
text-align: center;
font-family: 'Cinzel', sans-serif;
color:white;
filter: drop-shadow(0px 0px 2px rgba(0,0,0,.8)) drop-shadow(0px 0px 10px rgba(255,255,255,.3));
}
.album-edit {
margin-top: 60px;
/*width: 100%;*/
}
.album-table {
width: 100%;
}
.edit {
display: inline-block;
margin: 5px 5px;
background: #485563;
border: 1px solid gray;
color: white;
/*text-align: center;*/
min-width: 90%;
}
.edit-title {
font-size: 120%;
}
.edit-desc {
font-size: 100%;
/*width: 80%;*/
}
#fp-nav ul li a span {
color: white;
background-color: white;
filter: drop-shadow(0px 0px 2px rgba(0,0,0,.8)) drop-shadow(0px 0px 10px rgba(255,255,255,.3));
}
.card-holder {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.item-card {
/* Add shadows to create the "card" effect */
box-shadow: 0 4px 4px 0 rgba(255,255,255,0.2);
transition: 0.3s;
border-radius: 5px; /* 5px rounded corners */
width: 100px;
height: 120px;
flex: none;
margin: 5px;
position: relative;
}
/* On mouse-over, add a deeper shadow */
.item-card:hover {
box-shadow: 0 6px 12px 0 rgba(255,255,255,0.3);
}
.item-card-thumb {
/*width: 100%;*/
border-radius: 5px 5px 0 0;
object-fit: cover;
}
/* Add some padding inside the card container */
.item-card-body {
padding-left: 2px;
font-family: sans-serif;
font-size: 6pt;
}
.item-check {
position: absolute;
top: -3px;
left: -3px;
color: green;
font-size: 18pt;
text-shadow: 1px 1px 5px white;
}
.item-checked {
opacity: 0.5;
background-color: black;
}