-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (86 loc) · 1.48 KB
/
style.css
File metadata and controls
92 lines (86 loc) · 1.48 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
body{
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
margin: 0px;
background-color: #011F3F;
color: white;
display: flex;
justify-content: center;
}
.go{
background-color: red;
}
.main{
display: flex;
flex-direction: column;
width: 100%;
align-items: center;
}
h1{
font-family: 'Press Start 2P', cursive;
font-size: 4rem;
color: #FEF2BF;
width: 80%;
text-align: center;
}
.pop{
display: none;
}
.kpop{
display: block;
color: #ffffff;
font-size: 2rem;
margin: 0px;
}
.kmain{
display: none;
}
button{
height: 230px;
width: 230px;
margin: 2rem;
border: 10px solid black;
border-radius: 49px;
cursor: pointer;
}
/* button:hover{
border: 10px solid #413f3f;
} */
.onP{
border: 20px solid rgb(189, 189, 189);
}
.g{
background-color: green;
}
.r{
background-color: red;
}
.y{
background-color: yellow;
}
.b{
background-color: blue;
}
@media ( max-width:540px) {
h1{
font-size: 30px;
margin-top: 5rem;
}
button{
width: 150px;
height: 150px;
}
main{
display: flex;
flex-direction: column;
}
}
@media ( max-width:390px) {
button{
width: 120px;
height: 120px;
margin: 1rem;
border: 5px solid black;
border-radius: 35px;
cursor: pointer;
}
}