forked from IBM-Cloud/openwhisk-darkvisionapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.css
102 lines (86 loc) · 1.54 KB
/
home.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
.home {
padding: 18px 40px;
overflow-y: scroll;
}
.width-wrapper {
max-width: 1440px;
margin: 0 auto;
}
.button-group {
text-transform: none;
border-radius: 5px;
margin: 0;
min-width: inherit;
margin-left: 15px;
padding-left: 15px;
padding-right: 15px;
}
.button-group:not([disabled]):hover {
background-color: inherit !important;
transition: all 0.25s ease;
}
.button-group:first-of-type {
margin-left: 15px;
}
.showing {
font-weight: 500;
}
.video-box-title {
margin-top: 10px;
display: block; /* Fallback for non-webkit */
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
font-size: 14px;
height: 32px;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.video-box-title a {
color: inherit;
text-decoration: none;
}
.video-box-tags {
position: absolute;
bottom: 10px;
right: 10px;
}
.image-uploads-title {
margin-top:30px;
}
.image-thumbnail {
width: 220px;
max-width: 220px;
max-height: 300px;
}
@media (max-width: 600px) {
.image-thumbnail {
width: 100%;
max-width: none;
max-height: none;
}
}
.video-box {
}
.image-box {
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid;
}
.video-box {
width: 100%;
height: 100%;
}
.video-box > a {
display: block;
position: relative;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.video-box-title a {
background-color: transparent;
}