-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
91 lines (83 loc) · 1.76 KB
/
styles.css
File metadata and controls
91 lines (83 loc) · 1.76 KB
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
.vidContainer {
display: grid;
width: 100%;
height: 100%;
/* grid-template-areas: ""; */
grid-template-columns: 3fr 1fr;
grid-template-rows: repeat(3, 1fr);
grid-row-gap: 16px;
row-gap: 16px;
column-gap: 16px;
}
.vidThumb {
height: 100%;
text-align: center;
font-weight: bold;
font-size: 2em;
line-height: 1em;
color: #fff;
text-decoration: none;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.vidThumb img {
width: 36px;
height: 36px;
margin-top: 24px;
margin-bottom: 8px;
}
@media (max-width: 768px) {
.vidContainer {
display: block;
}
.vidThumb {
width: 31%;
height:100px;
font-size: 1.4em;
float: left;
margin: 8px 8px 0px 0px;
}
.vidThumb img {
width: 24px !important;
height: 24px !important;
}
}
/* .vidContainer {
display: grid;
width: 100%;
height: 100%;
grid-template-areas:
"main vid1"
"main vid2"
"main vid3";
grid-template-columns: 75% 25%;
grid-template-rows: 1fr 1fr 1fr;
} */
/* .vidMain {
grid-area: main;
} */
/* .vid1, .vid2, .vid3 {
grid-area: vid1;
} */
/* .VideoModuleDemo-Thumb {
height: 100%;
text-align: center;
font-weight: bold;
font-size: 3em;
margin-left: 16px;
color: #666666;
text-decoration: none;
} */
/* .VideoModuleDemo-Thumb img {
width:36px;
height:36px;
} */
/* .VideoModuleDemo-Thumb1 {
xbackground-image: url("https://FRANKLYDEMO.images.worldnow.com/images/18020840_G.jpeg");
background-image: linear-gradient(0deg,rgba(0,0,0,.5),transparent), url("https://FRANKLYDEMO.images.worldnow.com/images/18020840_G.jpeg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
border-bottom: 16px solid #fff;
} */