-
Notifications
You must be signed in to change notification settings - Fork 973
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (96 loc) · 1.4 KB
/
style.css
File metadata and controls
98 lines (96 loc) · 1.4 KB
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
html *{
margin:0;
padding:0;
}
nav{
position: relative;
background-color:#98CA32;
text-align:right;
overflow:hidden;
}
nav a{
display:inline-block;
text-decoration:none;
color:#190934;
padding:14px 16px;
font-size:17px;
font-family:sans-serif;
}
nav a.active{
background-color:#5A18C9;
color:#EBF7D4;
}
nav a:hover{
background-color:#EBF7D4;
color:#190934;
}
details{
display:none !important;
width:150px;
}
.brandName{
position: absolute;
top: 50%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
font-size:17px;
font-weight: bold;
float: left;
margin-left: 10px;
}
section{
text-align:center;
}
h1{
color:#190934;
font-family:sans-serif;
font-size:3em;
margin-top:10px;
}
h3{
color:#FC7307;
font-family:sans-serif;
font-size:2em;
margin-bottom:10px;
}
mark{
background-color:#5A18C9;
color:#EBF7D4;
padding:5px;
}
p{
margin-top:10px;
}
footer{
position:absolute;
bottom:0;
background-color:#190934;
width:100%;
padding:10px;
color:#EBF7D4;
font-family:sans-serif;
}
@media screen and (max-width: 600px) {
.largeNav{
display:none;
}
details{
display:block !important;
padding:25px;
width: 90%;
font-size:24px;
margin-right:25px;
}
details a{
display:grid;
justify-content:center;
text-align:center;
}
details a:hover{
background-color:#EBF7D4;
color:#190934;
}
.brandName{
top: 40px;
}
}