-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
165 lines (161 loc) · 3.58 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
@import 'https://fonts.googleapis.com/css?family=Play';
body {
background-color: #EDDEA4
/*Need to know the color scheme to do this*/
;
margin: 0;
}
#nav {
width: 100%;
height: 60px;
background-color: #D1C598
/*Need to know the color scheme to do this*/
;
color: #fff;
-webkit-box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.50);
-moz-box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.50);
box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.50);
font: 24px Helvetica, sans-serif;
text-align: center;
position: fixed;
}
#nav, .nav {
list-style-type: none;
display: block;
height: 60px;
white-space: nowrap;
font: 24px Helvetica, sans-serif;
padding: 0;
margin: 0;
top: 0;
}
.nav li {
transition: all .15s ease;
float: left;
padding-top: 16px;
padding-bottom: 16px;
}
.nav li a {
padding-left: 12px;
padding-right: 12px;
color: #fff;
text-decoration: none;
}
.nav li:hover {
transition: all .15s ease;
background-color: rgba(0, 0, 0, 0.10);
}
#menu_opener {
transition: all .15s ease;
padding: 5px;
float: left;
font: 40px/50px Helvetica, sans-serif;
margin: 0;
}
#menu_opener:hover {
cursor: pointer;
}
#shell {
width: 100%;
background-color: transparent;
padding-top: 100px;
}
#shell .section {
margin:auto;
width: 60%;
margin-bottom: 20px;
}
#shell .section .section-head {
text-align: center;
font: 18px 'Play', sans-serif;
font-weight: 700;
padding: 5px;
background-color: #D1C598;
border-top-right-radius: 10px;
border-top-left-radius: 10px;
border-top: 1px solid #BDB28C;
}
#shell .section .section-content {
font-family: Helvetica, sans-serif;
padding: 5px;
background-color: #EBF8B8;
-webkit-box-shadow: 0px 6px 5px -2px rgba(0, 0, 0, 0.25);
-moz-box-shadow: 0px 6px 5px -2px rgba(0, 0, 0, 0.25);
box-shadow: 0px 6px 5px -2px rgba(0, 0, 0, 0.25);
color: #815355;
}
li a::selection {
color: #f1f1f1;
background-color: transparent;
}
.logo {
text-align: center;
font: 40px/60px Helvetica, sans-serif;
}
.logo::selection {
color: #f1f1f1;
background-color: transparent;
}
#shellm .mobile {
width: 100%;
margin-bottom: 15px;
}
#shellm .mobile .mobile-head {
text-align: center;
font: 14px Helvetica, sans-serif;
font-weight: 600;
padding: 5px;
background-color: #D1C598;
border-top-right-radius: 6px;
border-top-left-radius: 6px;
border-top: 1px solid #BDB28C;
}
#shellm .mobile .mobile-content {
font-family: Helvetica, sans-serif;
padding: 5px;
background-color: #F7F7F7;
-webkit-box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.51);
-moz-box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.51);
box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.51);
}
#shellm {
width: 100%;
background-color: transparent;
padding-top: 30px;
}
.s {
transition: all .15s ease;
text-decoration: none;
color: black;
}
header {
padding-top: 70px;
background-color: #BDB28C;
text-align: center;
font: 20px helvetica, sans-serif;
padding-bottom: 10px;
}
.ul {
list-style-type: none;
margin: 2px;
padding-left: 0;
}
.li {
transition: all .15s ease;
padding: 5px;
}
.li:active {
transition: all .15s ease;
background-color: #D1C598;
}
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}