-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (68 loc) · 1000 Bytes
/
Copy pathstyle.css
File metadata and controls
85 lines (68 loc) · 1000 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
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
body{
background-color: #404040;
color: #eeeeee;
overflow-x: hidden;
}
.showoff{
position: absolute;
top: 20%;
text-align:center;
left: 50%;
display:flex;
margin-left: -100px;
}
.below990{
display:none;
}
h4 h5{
margin-left:-200px;
}
.median {
Background-color: #2c2c2c;
color: #fff;
padding-left: 100px;
padding-right: 100px;
padding-bottom: 15px;
margin-top: -25px;
margin-bottom: 0px;
position: relative;
text-align: center;
font-size: 16px;
}
.column {
float: left;
width: 50%;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
.flexer {
padding:10px;
display: flex;
position:absolute;
flex-wrap: wrap;
font-size: 50px;
}
@media(max-width:990px) {
.below990{
display:contents;
text-align: center;
}
.above990{
display:none;
}
.column {
width: 100%;
}
}
@media(max-height:433px) {
.fa-arrow-up{
display:none;
}
.above990{
display:none;
}
}