-
Notifications
You must be signed in to change notification settings - Fork 1
/
mobile.css
102 lines (95 loc) · 2.13 KB
/
mobile.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
98
99
100
101
102
.mobile {
display: none;
}
#dropdown {
background: url(resources/polyhax.png);
background-size: auto 100%;
background-position: center;
background-repeat: no-repeat;
}
@media screen and (max-width: 650px) {
body {
background-image: url('resources/backgroundimg(1)_seamless_y.png');
background-attachment: scroll;
background-repeat: repeat-y;
background-position: top center;
background-size: auto 200%;
}
nav {
width: 100%;
flex-direction: column;
text-align: right;
justify-content: flex-end;
}
nav > a {
text-align: right;
padding-right: 20px;
box-sizing: border-box;
font-size: 20pt;
line-height: 65px;
height: 65px;
}
nav:not(.hidden) > a:not(#dropdown) {
opacity: 0;
pointer-events: none;
height: 0;
}
nav:not(.hidden) > a:not(#dropdown).animate {
-webkit-transition: height .5s, opacity .4s;
transition: height .5s, opacity .4s;
}
nav:not(.hidden).showing > a:not(#dropdown) {
pointer-events: all;
height: 65px;
opacity: 1;
}
nav > a#dropdown {
height: 65px;
}
nav > a#dropdown > img {
-webkit-transition: -webkit-transform .3s;
transition: transform .3s;
}
nav > a#dropdown:hover > img {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
nav > a#logo > img {
height:65px;
}
.mobile {
display: block;
}
#tooltip {
display: none;
}
#mlhBanner {
top: 67px;
width: 78px;
height: 139px;
right: 1px;
}
.faq > .question {
font-size: 26px;
line-height: 45.5px;
}
.faq.show > .answer {
font-size: 20px;
line-height: 20px;
}
.social {
width: 52px;
height: 52px;
font-size: 26px !important;
}
.social:before {
line-height: 52px;
}
}
@media screen and (max-width: 375px) {
body {
width: 375px;
overflow: scroll;
background-color: inherit;
}
}