-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (86 loc) · 2.2 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 {
background-color: rgb(196, 196, 209);
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
font-family: Atleet;
font-size: 30px;
letter-spacing: 3px;
font-weight: lighter;
margin-bottom: 10px;
text-align: center;
}
.container {
height: 400px;
width: 300px;
padding: 10px;
width: 220px;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
gap: 10px;
justify-items: center;
}
.box {
background-color: rgb(154, 154, 235);
width: 100px;
height: 100px;
padding: 5px;
box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
text-align: center;
}
.total {
box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
background-color: rgb(55, 188, 55);
width: 220px;
height: 100px;
grid-column-start: 1;
grid-column-end: 3;
text-align: center;
padding: 5px;
}
.btn {
box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
height: 50px;
width: 100px;
border: solid black 2px;
border-radius: 5px;
font-size: 12px;
font-family: "Atleet";
letter-spacing: 2px;
}
#tombolSalahBaca {
background-color: rgb(228, 228, 66);
}
#tombolSalahTanya {
background-color: rgb(204, 78, 166);
}
@font-face {
font-family: "Digital"; /* Nama font yang akan Anda gunakan dalam CSS */
src: url("./font/digital-7/digital-7.ttf") format("truetype"); /* Ganti path/to/ dengan lokasi file font Anda */
}
@font-face {
font-family: "atleet"; /* Nama font yang akan Anda gunakan dalam CSS */
src: url("./font/i_am_a_player/I\ AM\ A\ PLAYER.ttf") format("truetype"); /* Ganti path/to/ dengan lokasi file font Anda */
}
.number {
margin-top: 10px;
font-size: 55px;
font-family: "Digital", sans-serif;
}
p {
margin: 0px;
font-size: 16px;
letter-spacing: 1px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.margintop0 {
margin-top: 0px;
}
#reset {
background-color: rgb(222, 61, 61);
margin-top: 10px;
font-size: 15px;
}