-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
61 lines (54 loc) · 1.07 KB
/
styles.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
html, body {
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
#title {
text-align: center;
}
#button-wrap {
text-align: center;
top: 55%;
position: relative;
}
#content-wrapper {
padding: 0;
margin: 0;
position: absolute;
top: 0;
left: 0;
height: 100%;
}
#container {
top: 80px;
height: 50%;
left: 50%;
margin-left: -225px;
width: 450px;
overflow: hidden;
position: absolute;
border: 1px solid #000;
padding: 10px;
padding-bottom: 20px;
}
#container.two-up {
margin-left: -450px;
width: 900px;
}
#content {
height: 100%;
overflow: visible;
position: relative;
padding: 0;
-webkit-column-width: 440px;
-webkit-column-gap: 10px;
-webkit-transition-property: opacity;
-webkit-transition-duration: 0.1s;
-webkit-transition-timing-function: ease;
-moz-column-width: 440px;
-moz-column-gap: 10px;
-moz-transition-property: opacity;
-moz-transition-duration: 0.1s;
-moz-transition-timing-function: ease;
}