-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
91 lines (90 loc) · 1.68 KB
/
Copy pathstyles.css
File metadata and controls
91 lines (90 loc) · 1.68 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
@charset "Utf-8";
/* ========= ヘッダー ========= */
header {
background-size: 100%;
background-position: center;
padding: 120px 15px 50px;
height: 260px;
color: #FFFFFF;
text-align: right;
font-weight: bold;
}
/* ========= ナビゲーション ========= */
nav ul {
display: flex;
justify-content: flex-end;
list-style-type: none;
padding: 15px 5px 13px;
border-bottom: solid 3px #CD853F;
}
nav li {
margin: 0px 15px;
font-size: 18px;
}
nav a {
color: #666666;
text-decoration: none;
}
nav a:hover {
color: #F4A460;
font-weight: bold;
}
/* ========= メインコンテンツ ========= */
main h1 {
margin: 30px 15px 15px;
padding: 10px;
background: #FAEBD7;
border-top: solid 3px #CD853F;
border-bottom: solid 3px #CD853F;
font-size: 28px;
color: #A0522D;
}
main h2 {
margin: 20px 15px 10px;
font-size: 22px;
color: #A0522D;
}
main h3 {
margin: 20px 25px 10px;
font-size: 18px;
}
main p {
margin: 0px 20px;
width: 580px;
}
main li {
margin: 0px 20px;
list-style-type: circle;
}
.picture {
height: 200px;
margin: 10px 25px 8px;
float: left;
}
.center_contents {
width: 600px;
margin: auto;
}
/* ========= フッター ========= */
footer {
background-color: #CD853F;
margin: 40px auto 0px;
padding: 15px;
color: #FFFFFF;
}
footer ul {
list-style-type: none;
font-size: 14px;
}
footer a {
color: white;
text-decoration: none;
}
footer a:hover {
color: #F4A460;
}
#copyright {
margin-top: 30px;
font-size: 12px;
text-align: right;
}