forked from kishanrajput23/Java-Projects-Collections
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmedia.css
More file actions
55 lines (54 loc) · 944 Bytes
/
Copy pathmedia.css
File metadata and controls
55 lines (54 loc) · 944 Bytes
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
@media screen and (max-width:1250px){
html,body{
font-size: 15px;
}
.container{
width: 280px;
}
h1.title{
font-size: 31px;
}
.score-container,
.best-container{
padding: 3px 10px;
}
.game-container{
margin-top: 10px;
width: 280px;
height: 280px;
}
.grid-container,
.tile-container{
width: 260px;
height: 260px;
}
.grid-row,
.tile{
height: 22.75%;
}
.grid-cell,
.tile{
width: 22.75%;
}
.grid-row{
margin-bottom: 3%;
}
.grid-cell{
margin-right: 3%;
}
.tile{
font-size: 35px;
}
.tile[data-val="128"],
.tile[data-val="256"],
.tile[data-val="512"]{
font-size: 25px;
}
.tile[data-val="1024"],
.tile[data-val="2048"]{
font-size: 21px;
}
.pop-container p{
font-size: 30px;
}
}