-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (89 loc) · 1.58 KB
/
style.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
html, body {
margin: 0;
padding: 0;
min-height: 100vh;
background-color: #eee5e0;
font-family:-apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI","Noto Sans Japanese","ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
}
.pane {
min-height: 100vh;
}
.top.pane {
display: flex;
background-image: url("img/key.jpg");
background-size: cover;
background-position: center;
border-bottom: 1px solid black;
}
header.top {
margin: auto;
margin-top: 35vh;
}
header.top h1, header.top h2 {
margin: 0;
}
header.top h1 {
font-size: 60px;
text-align: center;
line-height: 60px;
border-bottom: black 1px dashed;
}
header.top h2 {
font-size: 16px;
}
.gotobottom {
position: absolute;
bottom: 0;
margin-bottom: 30px;
width: 100%;
text-align: center;
}
.gotobottom a {
color: inherit;
text-decoration: inherit;
}
ul.members {
padding: 0;
display: flex;
flex-wrap: wrap;
}
li.member {
list-style: none;
margin: 0;
width: 400px;
max-width: 100vw;
}
.content {
padding: 0 16px;
}
main img {
width: 100%;
border: 1px solid gray;
}
footer {
border-top: 1px solid gray;
padding: 16px;
}
p {
line-height: 2em;
}
@media (min-width: 800px){
header.top {
margin: auto;
margin-left: 10vw;
}
.content {
max-width: 800px;
margin: 0 auto;
padding: 0;
}
.gotobottom {
text-align: unset;
width: unset;
right: 0;
margin: 60px;
}
p {
padding-left: 16px;
}
}