-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (82 loc) · 1.61 KB
/
style.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
*{
color: rgb(45, 33, 117);
background-color: pink;
}
body{
margin: 0;
padding: 0;
}
.fullContainer{
height: 100lvh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.halfContainer{
color: white;
height: 30rem;
width: 40%;
border: 5px solid white;
background-color: pink;
border-radius: 10px;
}
.elementContainer{
display: flex;
justify-content: space-evenly;
align-items: center;
height: 7rem;
background-color: pink;
}
.element{
border: 3px solid white;
border-radius: 5px;
height: 2rem;
width: 5rem;
justify-content: center;
display: flex;
align-items: center;
font-family: monospace;
font-size: 1.3rem;
font-weight: 900;
cursor:grab;
}
.gameResult{
margin-left:5rem ;
}
.for{
font-family: monospace;
font-size: 2rem;
font-weight: 900;
color: chocolate;
display: flex;
align-items: center;
justify-content:baseline;
}
@media screen and (min-width: 600px) and (max-width: 1050px) {
.halfContainer{
width: 90%;
}
.gameResultContainer{
display: flex;
justify-content: center;
}.gameResult{
margin-left: -30%;
}
}
@media screen and (min-width: 100px) and (max-width: 600px) {
.halfContainer{
width: 90%;
}
.for{
font-size: 1rem;
}
.gameText{
font-size: 1rem;
} .gameResultContainer{
display: flex;
justify-content: baseline;
}.gameResult{
margin-left:5%;
}
}