-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (68 loc) · 2.23 KB
/
style.css
File metadata and controls
86 lines (68 loc) · 2.23 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
@font-face {
font-family: 'Noto Sans JP', sans-serif;
}
.custom-text {
font-family: 'Noto Sans JP', serif;
}
.scroll-box {
width: 70%; /* ボックスの幅を指定 */
height: 150px; /* ボックスの高さを指定 */
overflow: auto; /* スクロールを有効にする */
border: 1px solid #ccc; /* ボーダーを追加 */
padding: 10px; /* 内部の余白を指定 */
}
.centered-element {
display: flex;
justify-content: flex-start;
height: 100vh;
flex-direction: column;
align-items: center;
}
.recommend {
width: 100%; /* 幅いっぱいを指定 */
height: 300px; /* 高さを300pxに指定 */
justify-content: space-between;
padding: 10px 10px 10px 10px; /* ヘッダーに上下左右それぞれ余白を指定 */
display: flex; /* 中の要素を横並びにする */
align-items: center; /* 中の要素を上下中央に並べる */
}
body {
font-family: 'Noto Sans JP', Times, serif;
}
.notlink {
color: black;
text-decoration: none;
}
header img, header h1 {
margin: 0;
}
main {
height: 100vh; /* スクロールの演出を見れるようにmainに高さを指定 */
}
OBJECT {
width: 70%; /* ボックスの幅を指定 */
height: 150px; /* ボックスの高さを指定 */
overflow: auto; /* スクロールを有効にする */
border: 1px solid #ccc; /* ボーダーを追加 */
padding: 10px; /* 内部の余白を指定 */
}
.google_forms {
text-align: center;
}
/* https://www.sejuku.net/blog/224915 */
.textbox {
width: 200px;
margin: 0px 0px 0px 5px;
border-radius: 5px;
border: 2px solid #ccc;
padding: 0.4em;
}
.textbox:focus {
outline: 0;
border: 2px solid #80C4FF;
}
/* https://kyoheiomi.com/design/css_button_design */
.fuwatto_btn_yellow{ display: inline-block; background-color: #80C4FF; color: #000; width: 60px; padding: 0.4em; text-decoration: none; border-radius: 4px; box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2); -webkit-tap-highlight-color: transparent; transition: .3s ease-out; margin: 0px 5px;
}
.fuwatto_btn_yellow:hover{ cursor: pointer; text-decoration: none; box-shadow: 0 5px 10px 0 rgba(0,0,0,0.12), 0 3px 20px 0 rgba(0,0,0,0.12), 0 5px 6px -2px rgba(0,0,0,0.2);
}