-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (100 loc) · 1.77 KB
/
Copy pathstyle.css
File metadata and controls
100 lines (100 loc) · 1.77 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
*{
margin : 0;
padding : 0;
}
body {
background-image: linear-gradient(90deg, #548687, #ffffc7);
text-align: center;
margin-top: 30vmin;
}
.container {
height : 60vh;
display: flex;
justify-content: center;
align-items: center;
}
.game {
height : 60vmin;
width: 60vmin;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap : 1.5vmin;
}
.box {
height: 22vmin;
width : 19vmin;
border-radius: 1rem;
border : none;
box-shadow: 0 0 1rem rgba(0,0,0,0.5);
font-size: 8vmin;
color : #b0413e;
background-color: #ffffc7;
cursor : pointer;
}
#reset-btn {
padding : 1rem;
font-size : 5rem;
background-color : #191913;
color : #fff;
border-radius: 1rem;
margin-top: 20vmin;
cursor : pointer;
position: relative;
z-index: 1;
}
#new-btn {
padding : 1rem;
font-size : 5rem;
background-color : #191913;
color : #fff;
border-radius: 1rem;
cursor : pointer;
}
#msg {
color: #ffffc7;
font-size : 12vmin;
}
.msg-container {
position: relative;
height: 100vmin;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 4rem;
}
.hide {
display : none;
}
#heading {
font-size : 6rem;
color: #284747;
margin-top: 10vmin;
}
.gif {
background-image: url("minnion.gif");
height: 40vmin;
width: 70vmin;
background-size: cover;
border-radius: 3vmin;
opacity: 0.8;
}
.hidden {
display: none;
}
.gif2 {
background-image: url("minnion2.gif");
height: 40vmin;
width: 70vmin;
background-size: cover;
border-radius: 3vmin;
opacity: 0.8;
}
.hiddenn {
display : none;
}
.winning-box {
background-color: #548687;
}