-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
79 lines (64 loc) · 1.19 KB
/
Copy pathstyles.css
File metadata and controls
79 lines (64 loc) · 1.19 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
html { height: 100%; }
body {
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
}
h1 {
font-size: 120%;
font-weight: bold;
}
p {
font-size: 100%;
}
.responsiveCanvas {
width: auto;
height: auto;
max-width: 100%;
max-height: 95%;
}
#vitesContainer {
font-style: italic;
}
/* COLUMN SETUP */
.col {
display: block;
float:left;
margin: 1% 0 1% 1%;
}
.col:first-child { margin-left: 0; }
/* GROUPING */
.group:before,
.group:after { content:""; display:table; }
.group:after { clear:both;}
.group { zoom:1; /* For IE 6/7 */ }
.canvasContainer {
width: 74.75%;
height: 100%;
}
.textContainer {
width: 24.25%;
}
@media only screen and (max-width: 900px) {
.textContainer {
font-size: 85%;
}
p {font-size: 85%;}
h1 {font-size: 100%;}
}
@media only screen and (max-width: 750px) {
.textContainer {
font-size: 75%;
}
p {font-size: 75%;}
h1 {font-size: 85%;}
}
/* GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 480px) {
.col { margin: 1% 0 1% 0%; }
.textContainer, .canvasContainer {
width: 100%;
height: 50%;
}
}