-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
114 lines (109 loc) · 1.84 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
* {
margin: 0;
padding: 0;
overflow: x 0;
overflow-x:hidden;
font-family: "Poppins", sans-serif;
}
.grid {
position: relative;
display: flex;
flex-wrap: wrap;
width: 440px;
height: 440px;
background-color: white;
max-width: 100%;
}
.new-content {
margin: 0;
padding: 0;
top:0;
bottom:0;
left:0;
right:0;
height:max-content;
width: 100%;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
vertical-align: center;
max-width: 100%;
}
html {
background: black;
background-size: 100% 100%;
}
body {
align-items: center;
max-width: 100%;
}
.grid div {
display: flex;
position: relative;
width: 90px;
height: 90px;
background-color: white;
color: black;
border: solid;
border-width: 10px;
font-size: 250%;
font-weight: bold;
justify-content: center;
align-items: center;
vertical-align: middle;
text-shadow: 2px 2px 3px rgb(63, 60, 60);
}
.stop-button {
float: right;
justify-content: right;
margin-left: 80%;
}
.heading {
position: relative;
margin-top: 5%;
margin-bottom: 1%;
border: solid;
background: linear-gradient(90deg, #14ffe9, #ffeb3b, #ff00e0, #6e1df0);
border-width: 5px;
border-color: rgb(48, 46, 46);
}
.head {
max-width: 100%;
text-align: center;
}
#score {
position: fixed;
display:contents;
color: rgb(241, 238, 237);
justify-content: center;
margin-top: 20%;
}
#result {
color: white;
}
@media only screen and (min-width: 300px) and (max-width: 490px) {
*{
margin: 0;
padding: 0;
overflow:hidden;
}
div.new-content {
max-width: 100%;
}
.grid {
width: 370px;
height: 370px;
}
.grid div {
width: 82.5px;
height: 82.5px;
border-width: 5px;
}
.html {
justify-content: center;
align-items: center;
orientation: landscape;
}
}