-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
92 lines (83 loc) · 1.54 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
84
85
86
87
88
89
90
91
92
/*
Blue #1B244A
Black #080001
Red #F94F6D
Glicine #9AABD8
*/
@font-face{
font-family: "Cursed Timer";
src: url("CursedTimerUlil-Aznm.ttf");
}
:root{
--white: #EEEEEE;
--black: #080001;
--red: #F94F6D;
--glicine: #9AABD8;
--dark-glicine: #DDD6FE;
--blue: #1B244A;
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
text-align: center;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.container {
display: flex;
justify-content: space-around;
align-items: center;
gap: 1rem;
max-width: 500px;
margin: 3rem auto;
padding: 1rem 3rem 2rem;
color: var(--white);
background: #1B244A;
border-radius: 10px;
box-shadow: 0 0 10px 0 var(--dark-glicine);
}
.game-column {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
gap: 1rem;
}
.container h3{
font-size: 2.5rem;
}
.display {
width: 1.75em;
background: var(--black);
padding-top: 1rem;
border-radius: 10px;
font-size: 5rem;
color: var(--red);
}
.points-buttons{
width: 100%;
display: flex;
justify-content: space-around;
}
.display, btn {
font-family: "Cursed Timer", Courier New, Courier, monospace;
}
.btn {
border-radius: 5px;
}
.btn {
font-family: inherit;
color: var(--glicine);
background: transparent;
padding: .4em;
border: 1px solid currentColor;
}
.btn:hover {
color: var(--dark-glicine);
cursor: pointer;
}
.reset-btn:hover{
color: var(--red);
}