-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
63 lines (51 loc) · 946 Bytes
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
._game_container {
max-width: 480px;
margin: auto;
}
._intro_container {
min-height: 100vh;
text-align: center;
position: relative;
padding: 50% 0;
}
._intro_container p {
font-size: 14px;
margin: auto;
margin-bottom: 20px;
line-height: 1.8;
max-width: 90%;
}
h1._title {
font-size: 20px;
padding: 10px 0;
}
@keyframes jedagjedug {
0% {
font-size: 12px;
}
25% {
font-size: 8px;
}
50% {
font-size: 12px;
}
75% {
font-size: 8px;
}
100% {
font-size: 12px;
}
}
._tombol_tampol {
position: relative;
animation: jedagjedug 5s infinite;
}