-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.css
More file actions
50 lines (42 loc) · 966 Bytes
/
tailwind.css
File metadata and controls
50 lines (42 loc) · 966 Bytes
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
@tailwind base;
@tailwind components;
@tailwind utilities;
html {
scroll-behavior: smooth;
}
body {
font-family: "Lato", "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", "YuGothic", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", "Meiryo", sans-serif;
padding-top: 84px;
}
#top:before {
content: "";
display: block;
padding-top: 50%;
}
#top-image {
background-image: url(./img/top.jpg);
background-position: center center;
background-size: cover;
}
.iframewrap {
height: 0;
padding-top: 56.25%;
}
.open {
display: block;
}
.timeline-content:before {
content: "";
width: 0.8rem;
height: 0.8rem;
background: theme('colors.red.400');
position: absolute;
left: 10.7rem;
top: 0.4rem;
border-radius: 100%;
}
.sponsors {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
@apply gap-8;
}