-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
237 lines (192 loc) · 3.51 KB
/
Copy pathstyles.css
File metadata and controls
237 lines (192 loc) · 3.51 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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
@charset "utf-8";
body {
margin: 0;
background-color: #43C7FF;
background-attachment: fixed;
background-image: -webkit-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(85,255,136,1.00) 100%);
background-image: -moz-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(85,255,136,1.00) 100%);
background-image: -o-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(85,255,136,1.00) 100%);
background-image: linear-gradient(180deg,rgba(255,255,255,1.00) 0%,rgba(85,255,136,1.00) 100%);
}
header{
width: 100%;
background-color: #006047;
text-align: center;
padding-top: 10px;
padding-bottom: 10px;
color: #FFFFFF;
}
#head_00 {
}
main {
width: 100%;
background-color: #FFFFFF;
}
#nav_00 {
width: 100%;
float: left;
text-align: center;
border-width: 1px;
border-bottom-style: dashed;
padding-bottom: 20px;
}
#mainlink {
}
#mainlink li a:link,#mainlink li a:visited{
text-decoration: none;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 10px;
padding-right: 10px;
border-radius: 5px;
background-color: #1E3E68;
color: #FBFBFB;
}
#mainlink li a:hover{
background-color: #97B6EC;
color: #000000;
}
#mainlink li a:active{
position:relative;
top:2px;
left:2px
}
#mainlink li {
list-style-type: none;
padding-left: 0px;
padding-top: 10px;
padding-bottom: 0px;
margin-top: 10px;
width: 50%;
float: left;
}
#page_00 {
padding-top: 10px;
clear: both;
padding-left: 2%;
}
#page_00 p {
}
#content_00 {
padding-left: 2%;
}
#content_00 h2 {
}
#content_00 p {
}
.pic_right{
margin-left: auto;
margin-right: auto;
display: block;
-webkit-box-shadow: 5px 5px 10px #000000;
box-shadow: 5px 5px 10px #000000;
}
#link_00 {
background-color: #C8BEB3;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
display: flex;
flex-direction: column;
}
#link_00 li img{
border-top: 13px solid #fff;
border-bottom: 13px solid #fff;
}
#link_00 ul{
list-style: none;
padding: 0;
}
#link_00 li{
margin-bottom: 15px;
margin-top: 15px;
}
#link_00 h3 {
}
#sublink li {
}
#sublink li img {
align-items: center;
-webkit-box-shadow: 5px 5px 10px rgba(0,0,0,0.1);
}
footer {
width: 100%;
background-color: #006047;
text-align: center;
padding-top: 10px;
padding-bottom: 10px;
color: #FFFFFF;
clear: both;
}
@media screen and (min-width:480px){
#nav_00 {
width: 100%;
float: left;
text-align: center;
border-width: 1px;
border-bottom-style: dashed;
padding-bottom: 20px;
}
#mainlink li{
width: 20%;
float: left;
margin-left: 10px;
}
#sublink li{
width: 50%;
float: left;
text-align: center;
}
#page_00{
clear: both;
padding-top: 10px;
padding-bottom: 0px;
}
.pic_right{
float: right;
margin-right: 20px;
}
}
@media screen and (min-width:900px){
main{
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}
#nav_00 {
width: 24%;
height: 100%;
float: left;
text-align: center;
border-width: 1px;
border-right-style: dashed;
}
#mainlink li{
width: 100%;
float: none;
}
#page_00{
width: 73%;
float: right;
clear: none;
}
#content_00{
width: 73%;
float: right;
}
#sublink{
text-align: center;
}
#sublink li{
width: 25%;
float: left;
}
#link_00 {
clear: both;
}
.pic_right{
float: right;
margin-right: 20px;
border: 13px solid #D55456;
}
}