-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmobile.css
More file actions
103 lines (90 loc) · 1.46 KB
/
Copy pathmobile.css
File metadata and controls
103 lines (90 loc) · 1.46 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
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
@media (max-width: 768px) {
/* CSS styles for screens smaller than 768px (e.g., tablets, mobile) */
body {
/* width: 100vh; */
background-color: #161d6f;
overflow-y: hidden;
overflow-x: hidden;
}
.opening-message {
width: 300px;
}
.message p {
font-size: 12px;
}
ul,
ol {
font-size: 10px;
}
h3 {
font-size: 12px;
}
.main {
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.user-selection {
margin-top: 50px;
}
.choices {
width: 350px;
}
.user-choice,
.computer-choice {
height: 150px;
margin-bottom: 10px;
}
.result {
display: flex;
/* justify-content: center; */
align-items: center;
}
.result-content {
text-align: center;
justify-content: center;
align-items: center;
line-height: 1.5;
}
img {
width: 40px;
}
.score p {
font-size: 16px;
}
p {
font-size: 16px;
line-height: 2;
text-align: center;
}
.text {
width: 100%;
height: 50px;
/* padding-left: 5px;
padding-right: 5px; */
}
.text h1 {
margin-top: 10px;
font-size: 12px;
line-height: 1.5;
font-family: "Press Start 2P";
/* line-height: 2; */
text-align: center;
padding: 2px;
}
nav {
padding: 10px;
}
#result {
font-size: 16px;
}
.winner .winner-message {
font-size: 18px;
}
.box {
margin-top: 20px;
height: 90px;
width: 90px;
}
}