-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbungeejumping.css
executable file
·97 lines (79 loc) · 1.42 KB
/
bungeejumping.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/**
* Responsive stylesheet
*
* font-size: 100% 16px 14pt 5mm? 1em
*
* Using em with 16px base
* 320px = 20em
* 480px = 30em
* 640px = 40em
* 720px = 45em
* 768px = 48em
* 800px = 50em
* 960px = 60em
* 1024px = 64em
* 1120px = 70em
* 1280px = 80em
* 1440px = 90em
*
* orientation: portrait/landscape
*
* min/max: width, device-width
*
*/
/** small **/
@media screen and (max-width:64em) {
body {
word-wrap: break-word;
}
img,
input,
textarea {
max-width: 100%;
}
} /** @media screen and MAX-width:64 **/
/** large **/
@media screen and (min-width:64em) {
h1 {
padding: 0 0 5mm 0;
}
#language {
float: right;
z-index: 1;
}
#home {
position: absolute;
top: 1%;
left: 1%;
z-index: 1;
}
/*** tables ***/
.csstab64_table {
display: table;
width: 92%;
margin: auto
}
.csstab64_row {
display: table-row;
width: 98%;
}
.csstab64_headerCell,
.csstab64_cell {
display: table-cell;
margin: 0 auto;
}
div.lhead {
z-index: 5;
display: inline-block;
width: 13%;
}
div.rhead {
z-index: 5;
display: inline-block;
width: 13%;
}
div.chead {
width: 72%;
display: inline-block;
}
} /** @media screen and min-width:64em **/