-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (86 loc) · 1.43 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
/* Navbar */
ul.navbar {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #8e3c8e;
}
ul.navbar li a {
display: block;
color: white;
text-align: center;
padding: 25px 16px;
text-decoration: none;
}
ul.navbar li a:hover:not(.mylogo) {
background-color: #000001;
}
ul.navbar li {
float: left;
}
ul.navbar li.right {
float: right;
}
ul.navbar li.left {
/* Fix for logo */
max-height: 68px;
}
/* Mobile Version */
@media screen and (max-width: 1081px) {
ul.navbar li.right,
ul.navbar li {
float: none;
}
.logo {
height: 45px;
}
ul.navbar li.left{
max-height: none;
}
iframe {
width: 100%
}
html{
background: none;
background-color: #592559;
}
}
/* Body & Text */
body {
font-family:Arial, Helvetica, sans-serif;
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
}