-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.css
62 lines (52 loc) · 913 Bytes
/
page.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
* {
margin:0;
padding:0;
}
header {
width: 100%;
padding: 15px 0;
margin: 0 auto;
text-align: center;
display: flex;
}
header .headline{
font-size: 32px;
margin-left: auto;
}
.nav-list {
text-align: center;
padding: 10px 0;
margin: 0 auto;
}
.nav-list-item {
list-style: none;
display: inline-block;
margin: 0 20px;
}
.profile {
text-align: center;
margin-top:50px;
}
.icon {
width: 250px;
height: 250px;
}
.profile-detail {
margin-top: 25px;
margin-bottom: 25px;
text-align: center;
}
ul.profile-align {
text-align: left;
display: inline-block;
}
.profile-items {
margin: 10px auto;
font-weight: 700;
font-size: 20px;
list-style: none;
}
a.img-style {
color: inherit; /* リンクの色を親要素と同じ色に設定 */
text-decoration: none; /* リンクの下線を削除 */
}