-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSPS.css
More file actions
102 lines (92 loc) · 1.75 KB
/
Copy pathSPS.css
File metadata and controls
102 lines (92 loc) · 1.75 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
body {
display: flex;
justify-content: center;
align-items: center;
background-color: black;
color: white;
}
.container {
display: block;
padding: 50px;
margin-top: 19px;
border-radius: 15px;
box-shadow: none;
border: 2px solid white;
}
button {
background-color: white;
width: 200px;
height: 50px;
cursor: pointer;
margin: 0px 14px 0px 14px;
border-radius: 15px;
}
input {
width: 655px;
height: 45px;
border-radius: 15px;
font-size: 35px;
font-weight: bolder;
padding-left: 10px;
}
#cStone,
#cScissor,
#cPaper {
cursor: not-allowed;
}
@media screen and (max-width:830px) {
button {
width: 120px;
height: 50px;
margin: 0px 3px 0px 3px;
}
input {
width: 380px;
height: 45px;
font-size: 35px;
font-weight: bolder;
padding-left: 0px;
}
.container {
display: block;
padding: 30px;
}
}
@media screen and (max-width:475px) {
button {
width: 90px;
height: 50px;
}
input {
width: 290px;
height: 45px;
font-size: 35px;
font-weight: bolder;
padding-left: 0px;
}
.container {
display: block;
padding: 30px;
}
}
@media screen and (max-width:400px) {
button {
width: 70px;
height: 50px;
}
h1{
font-size: 25px;
}
input {
width: 240px;
height: 45px;
font-size: 28px;
font-weight: bolder;
padding-left: 0px;
}
.container {
display: block;
padding: 30px;
margin-top:40px;
}
}