-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (88 loc) · 1.63 KB
/
style.css
File metadata and controls
118 lines (88 loc) · 1.63 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
body {
font-family: "Ubuntu Mono";
margin: 0;
}
a {
color: #000000;
text-decoration: none;
}
#navigation a {
font-size: 15px;
letter-spacing: 3px;
text-align: center;
margin: 3%;
}
p a {
text-decoration: underline;
}
p a:hover {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
p {
line-height: 200%;
font-size: 15px;
max-width: 80%;
}
.selected {
text-decoration: underline;
}
.invisible {
display: none;
}
#navigation {
margin-bottom: 10%;
}
#leftset {
position: absolute;
float: left;
margin: 0;
width: 50%;
height: 100%;
background-image: url("evolution-trace-2.png");
background-repeat: no-repeat;
background-size: contain;
background-position: center;
}
#rightset {
position: absolute;
float: right;
margin: 0px;
width: 50%;
left: 50%;
top: 50%;
-ms-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
}
@media (max-width : 1000px) {
#leftset {
position: absolute;
/*float: left;*/
margin: 0px;
width: 100%; /* mod*/
height: 100%;
background-image: url("evolution-trace-2.png");
background-repeat: no-repeat;
background-size: contain;
background-position: center;
}
#rightset {
position: absolute;
/*float: right;*/
margin: 0px;
width: 100%; /* mod */
left: 0%; /* mod */
top: 125%; /* mod */
-ms-transform: none; /* mod */
-webkit-transform: none; /* mod */
-moz-transform: none; /* mod */
-o-transform: none; /* mod */
transform: none; /* mod */
margin-bottom: 75%; /* add */
}
}