-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (54 loc) · 1.08 KB
/
style.css
File metadata and controls
62 lines (54 loc) · 1.08 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
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
.image {
width: 360px;
height: 280px;
}
.bg-container {
background-color: #f5f7fa;
}
.number {
color: #323f4b;
background-color: #cbd2d9;
font-family: "Roboto";
font-size: 30px;
font-weight: bold;
border-style: solid;
border-width: 8px;
border-color: #e4e7eb;
border-radius: 12px;
padding-left: 8px;
padding-right: 8px;
}
.operator {
color: #c4c4c4;
font-family: "Roboto";
font-size: 40px;
}
.user-input {
text-align: center;
color: #323f4b;
background-color: #cbd2d9;
font-family: "Roboto";
font-size: 30px;
font-weight: bold;
width: 142px;
height: 60px;
border-style: solid;
border-width: 8px;
border-color: #e4e7eb;
border-radius: 12px;
margin: 20px;
}
.game-result {
color: #ffffff;
background-color: #f5f7fa;
font-family: "Roboto";
font-size: 24px;
font-weight: 500;
}
.game-green {
background-color: #028a0f;
}
.game-blue {
background-color: #1e217c;
}