forked from joelnitta/spatial-phy-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
59 lines (49 loc) · 715 Bytes
/
styles.css
File metadata and controls
59 lines (49 loc) · 715 Bytes
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
.tiny {
font-size: 20%;
}
.small {
font-size: 40%;
}
.medsmall {
font-size: 60%;
}
.medium {
font-size: 80%;
}
.normal {
font-size: 100%;
}
.medlarge {
font-size: 120%;
}
.large {
font-size: 150%;
}
.small-margins {
padding-top: 0px;
padding-left: 10px;
padding-right: 10px;
padding-bottom: 10px;
}
.center {
padding: 70px 0;
text-align: center;
}
.right {
float: right;
}
.center-xy {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translateY(-50%), translateX(-50%);
transform: translateY(-50%), translateX(-50%);
}
.center-x {
margin: 0;
position: absolute;
left: 50%;
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}