-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
83 lines (70 loc) · 1.61 KB
/
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
/*グーグルフォントのリンク*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@700;800;900&display=swap');
body{
background: #CCD951;
}
h1#oomidashi{
font-size: 100px;
font-weight: 900;
text-align: center;
font-family: 'M PLUS 1p', sans-serif;
color: #F9E8AB;
}
h1#midashi{
font-size: 35px;
font-weight: 800;
text-align: center;
font-family: 'M PLUS 1p', sans-serif;
color:#6F5239;
}
body {
text-align: center;
font-family: 'M PLUS 1p', sans-serif;
font-weight: 700;
color:#6F5239;
}
.sentence{
padding:10px;
}
.btn_join {
display: inline-block;
padding: 0.5em 1em;
text-decoration: none;
background: #679641;/*ボタン色*/
color: #FFF;
border-bottom: solid 4px #3d6850;
border-radius: 3px;
}
.btn_join:active {
/*ボタンを押したとき*/
-webkit-transform: translateY(4px);
transform: translateY(4px);/*下に動く*/
box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);/*影を小さく*/
border-bottom: none;
}
.btn_access {
display: inline-block;
padding: 0.5em 1em;
text-decoration: none;
background: #F9E8AB;/*ボタン色*/
color: #6F5239;
border-bottom: solid 4px #857b5f;
border-radius: 3px;
}
.btn_access:active {
/*ボタンを押したとき*/
-webkit-transform: translateY(4px);
transform: translateY(4px);/*下に動く*/
box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);/*影を小さく*/
border-bottom: none;
}
#credit {
margin-top: 1em;
font-size: 90%;
}
#main>div {
margin: 1em;
}
#credit a {
color: gray !important;
}