-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
137 lines (115 loc) · 1.85 KB
/
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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/* Base styles for mobile first */
body {
background-color: rgb(25, 25, 25);
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
color: #333;
}
.container {
max-width: 90%;
width: 400px;
margin: 20px auto;
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
}
.title {
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
}
.buttons {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.move-button {
background-color: transparent;
border: 3px solid rgb(40, 39, 39);
width: 80px;
height: 80px;
border-radius: 50%;
margin: 10px;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
}
.move-icon {
height: 50px;
width: 50px;
}
.result {
font-size: 20px;
font-weight: bold;
margin-top: 20px;
}
.score {
margin-top: 30px;
}
.reset-score-button {
background-color: rgb(25, 25, 25);
border: none;
font-size: 14px;
padding: 10px 20px;
cursor: pointer;
color: white;
border-radius: 20px;
margin-top: 20px;
}
/* Styles for tablets and larger screens */
@media (min-width: 600px) {
.container {
max-width: 80%;
padding: 30px;
}
.title {
font-size: 28px;
}
.move-button {
width: 100px;
height: 100px;
}
.move-icon {
height: 60px;
width: 60px;
}
.result {
font-size: 22px;
}
.score {
font-size: 18px;
}
.reset-score-button {
font-size: 16px;
}
}
/* Styles for larger screens */
@media (min-width: 900px) {
.container {
max-width: 70%;
}
.title {
font-size: 30px;
}
.move-button {
width: 120px;
height: 120px;
}
.move-icon {
height: 70px;
width: 70px;
}
.result {
font-size: 25px;
}
.score {
font-size: 20px;
}
.reset-score-button {
font-size: 18px;
}
}