-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
70 lines (57 loc) · 1.13 KB
/
stylesheet.css
File metadata and controls
70 lines (57 loc) · 1.13 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
body {
font-family: "Avenir Next";
}
li {
list-style: none;
}
.header {
background-color: #26d0c9;
color: #fff;
height: 90px;
}
.header-logo {
float: left;
font-size: 36px;
padding: 20px 40px;
}
.header-list {
float: left;
}
.header-list li {
float: left;
padding: 33px 20px;
}
.main {
/* background-colorの指定を消してください */
/* heightの指定を消してください */
/* 上下のpaddingを100px、左右のpaddingを80pxにしてください */
padding: 100px 80px;
}
/* copy-containerの中のh1のfont-sizeを指定してください */
.copy-container h1 {
font-size: 140px;
}
/* copy-containerの中のh2のfont-sizeを指定してください */
.copy-container h2 {
font-size: 60px;
}
/* copy-containerの中のspanの色を指定してください */
.copy-container span {
color: #ff4a4a;
}
.footer {
background-color: #2f5167;
color: #fff;
height: 120px;
padding: 40px;
}
.footer-logo {
float: left;
font-size: 32px;
}
.footer-list {
float: right;
}
.footer-list li {
padding-bottom: 20px;
}