-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
146 lines (142 loc) · 2.29 KB
/
style.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/* Navbar */
.navbar {
background-color: #8E3C8E;
box-shadow: 1px 1px 4px 0 rgba(0,0,0,.75);
margin: 0;
padding: 0;
overflow: hidden;
}
.navbar ul {
margin: 0;
padding: 0;
list-style: none;
overflow: hidden;
}
.navbar li {
float: left;
}
.navbar li a {
color: #EEEEEE;
display: block;
padding: 25px 16px;
border-left: 1px solid #9F5C9F;
text-decoration: none;
}
.navbar li a:hover:not(.mylogo) {
background-color: #000001;
}
.logo {
cursor: pointer;
display: block;
float: left;
padding: 18px 25px;
text-decoration: none;
max-height: 68px;
}
.navbar .menu {
float: right;
max-height: none;
}
/* Menu Icon */
.navbar .menu-btn {
display: none;
}
.navbar .menu-icon {
cursor: pointer;
display: none;
float: right;
padding: 38px 20px;
position: relative;
}
.navbar .menu-icon .navicon {
background: #EEEEEE;
display: block;
height: 3px;
width: 25px;
position: relative;
}
.navbar .menu-icon .navicon:before {
top: 8px;
}
.navbar .menu-icon .navicon:after {
top: -8px;
}
.navbar .menu-icon .navicon:before,
.navbar .menu-icon .navicon:after {
background: #EEEEEE;
content: '';
display: block;
height: 100%;
width: 100%;
position: absolute;
}
.navbar .menu-btn:checked ~ .menu {
max-height: 250px;
}
/* Mobile Version */
@media screen and (max-width: 1081px) {
.navbar li.right,
.navbar li {
float: none;
border-left: none;
border-top: 1px solid #9F5C9F;
}
.navbar .menu {
clear: both;
float: none;
text-align: center;
max-height: 0;
transition: max-height .2s ease-out;
}
.navbar .menu-icon {
display: initial;
}
.logo {
height: 45px;
}
iframe {
width: 100%
}
html{
background: none;
background-color: #592559;
}
}
/* Body & Text */
body {
font-family:"Arial";
font-weight:600;
font-stretch:condensed;
margin: 0;
}
h1{
text-align: center;
-webkit-text-stroke: 2px black;
font-size:3em;
color: #ffffff;
margin:0
}
h2{
text-align: center;
-webkit-text-stroke: 2px black;
font-size:2.25em;
color: #ffffff;
text-decoration: underline;
text-decoration-color: white;
-webkit-text-decoration-stroke: 1px black;
margin:0
}
h3{
text-align: center;
-webkit-text-stroke: 1px black;
font-size:1.5em;
color: #ffffff;
margin:0
}
h4{
text-align: center;
-webkit-text-stroke: 1px black;
font-size:1.33em;
color: #ffffff;
margin:0
}