-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample_index.css
128 lines (128 loc) · 1.77 KB
/
sample_index.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
@charset "UTF-8";
header {
background: radial-gradient(circle at 99% 99%, #fff 1px, rgba(255, 255, 255, 0) 2px);
padding: 0;
height: 100px;
}
body {
margin: 0;
padding: 0;
background-color: #F8FBF8;
line-height: 1.6;
}
#outer {
margin: 0 auto;
width: 690px;
padding: 0 20px;
border-top: 2px solid #7A9837;
background-color: #ffff;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
#main {
padding: 4px 0 0 0;
}
#left {
width: 48%;
float: left;
}
#right {
width: 48%;
float: right;
}
ul {
margin: 0 0 0 1em;
padding: 0;
}
p {
margin: 1em 0;
color: #333;
}
img {
max-width: 100%;
height: auto;
border: 0;
}
hr {
border-width: 1px 0 0 0;
border-style: solid;
border-color: #ccc;
height: 1px;
}
a {
font-weight: normal;
color: #003366;
}
h1 {
font-size: 24px;
padding: 24px 0 0 0;
margin: 0;
}
h1 a {
font-weight: bold;
color: #8c0000;
text-decoration: none;
}
h1 a:hover {
text-decoration: underline;
}
h2 {
font-size: 22px;
margin: 0;
padding: 3px 0 4px 0;
border-bottom: 1px solid #F49909;
}
h3 {
font-size: 22px;
margin: 0;
padding: 3px 0 4px 0;
}
.side {
padding: 0 0 4px 0;
}
.side li {
margin-left: 5px;
list-style-type: none;
}
.side li a {
text-decoration: none;
}
.side li a:hover {
text-decoration: underline;
}
.title {
box-sizing: border-box;
margin: 10px 0;
font-weight: bold;
padding: 5px 20px;
color: #333;
background-color: #F4FCC4;
border: 1px solid #ccc;
border-radius: 20px;
}
footer {
padding-top: 14px;
height: 120px;
clear: both;
text-align: center;
}
footer a {
color: #444;
}
footer a:hover {
color: #003366;
}
blockquote {
border: 1px solid #ccc;
padding: 5px;
margin: 10px;
}
@media screen and (max-width: 767px) {
#outer {
width: 100%;
padding: 0 10px;
}
#left, #right {
width: 100%;
float: none;
margin-bottom: 20px;
}