-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebsite.css
73 lines (63 loc) · 1.06 KB
/
website.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
/* OVERRIDES */
.markdown-section{
font-size: 1.7rem;
line-height: 1.5;
}
.markdown-section blockquote{
color: auto;
}
/* VIDEO */
.video-wrapper {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
padding-top: 25px;
height: 0;
}
.video-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* IMAGES */
.img-left{
float: left;
margin-right: 1em;
clear: both;
}
.img-right{
float: right;
margin-left: 1em;
clear: both;
}
.img-200px{ width: 200px; }
.img-250px{ width: 250px; }
.img-300px{ width: 300px; }
.img-50pc{ width: 50%; }
hr{clear: both;}
.mobile-visible{
display: none;
}
.mobile-hidden{
display: inherit;
}
/*
These rules only apply to screens less than 600px wide.
They override rules placed earlier in this file.
*/
@media only screen and (max-width: 600px) {
.img-50pc, .img-250px, .img-300px, .img-500px{
width: 100%;
}
.img-left, .img-right{
clear: both;
float: none;
}
.mobile-visible{
display: inherit;
}
.mobile-hidden{
display: none;
}
}