-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (112 loc) · 2.19 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
*{
padding: 0;
margin: 0;
border: border-box;
font-family: Arial;
}
body{
background: linear-gradient(180deg, #C33764, #1D2671);
height: 96.9vh;
}
h1{
text-align: center;
font-size: 3rem;
margin-top: 3vmin;
margin-bottom: 5vmin;
color: #1b2261;
font-weight: 800;
}
.msg-container{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
margin-top: 2.5vmin;
margin-bottom: 5vmin;
font-size: 1.5rem;
color: bisque;
font-weight: 600;
height: 10vh;
}
#new-button{
padding: 1rem;
margin-top: 2.5vmin;
border-radius: 3rem;
border: none;
font-size: 60%;
background-color: #229a22;
color: bisque;
font-weight: 600;
cursor: pointer;
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.7 );
}
.hide{
display: none;
}
.container{
height: 60vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.box{
height: 50vmin;
width: 55vmin;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 1.9vmin;
}
.button1{
height: 14vmin;
width: 14vmin;
border-radius: 1.5rem;
border: none;
box-shadow: 0 0 1rem rgba(0, 0, 0, 2 );
font-size: 10vmin;
font-weight: 600;
cursor: pointer;
color: #c70442;
background-color: #ffdce7;
}
#reset-button{
margin-top: 5.5vmin;
padding: 1rem;
border-radius: 3rem;
border: none;
font-size: 90%;
background-color: #c70442;
color: bisque;
font-weight: 600;
cursor: pointer;
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.7 );
}
@media (max-width: 480px) {
h1{
margin-top: 8vh;
font-size: 2rem;
}
.box{
margin-top: -20vh;
}
.msg-container{
margin-top: 5vh;
font-size: 1.3rem;
}
#new-button{
margin-top: 4vh;
}
.container{
margin-top: 10vmin;
}
.button1{
border-radius: 0.7rem;
width: 17vmin;
height: 17vmin;
}
#reset-button{
margin-top: 15vmin;
}
}