-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·73 lines (63 loc) · 1.41 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
@import url(https://fonts.googleapis.com/css?family=Varela+Round);
.header .active {
font-weight: 900;
outline: none; }
.header .navbar-brand {
font-size: 1.75em;
font-weight: 900;
outline: none;
font-family: 'Varela Round', sans-serif; }
.image-detail .panel-body {
text-align: center; }
.image-detail img, .image-detail video {
max-width: 100%; }
.image-preview {
display: inline-block;
position: relative; }
.image-preview .inset {
position: absolute;
bottom: 5px;
left: 0px;
width: 100%;
background-color: #fff;
text-align: center;
opacity: .7; }
.image-preview .glyphicon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 50px;
opacity: .6;
color: #fff; }
.image-preview img {
height: 250px;
width: 250px;
display: inline-block; }
.image-preview video {
height: 250px;
width: 250px;
vertical-align: middle;
background-color: #000; }
@media (min-width: 990px) {
.image-preview img {
height: 250px;
width: 250px; }
.image-preview video {
height: 250px;
width: 250px; } }
.black {
color: black; }
.list-group-item a:active {
outline: none; }
.container {
background-color: #9BC43A; }
.topic {
text-align: center; }
.topic .image-preview {
animation: fadein .65s ease-out; }
@keyframes fadein {
0% {
opacity: 0; }
100% {
opacity: 1.0; } }