-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle.css
More file actions
65 lines (59 loc) · 1.17 KB
/
Copy pathStyle.css
File metadata and controls
65 lines (59 loc) · 1.17 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
* {
padding: 0;
margin: 0;
}
body {
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #06042c;
}
main {
margin-left: auto;
margin-right: auto;
width: 90%;
height: 60%;
background-color: rgba(128, 128, 128, 0.247);
padding: 10px;
border-radius: 15px;
display: grid;
grid-template-columns: repeat(4, minmax(120px, auto));
gap: 30px;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
div {
margin: 25px;
width: 90%;
height: 80%;
background-color: #3498db;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.8s, background-color 0.2s;
padding-top: 10px;
padding-left: 3px;
cursor: pointer;
}
input[type="checkbox"] {
width: 20px;
height: 20px;
margin-left: 3px;
border: 2px solid red;
outline: none;
}
div:hover {
transform: scale(1.05);
background-color: #2980b9;
}
p {
text-align: center;
color: white;
font-size: 18px;
font-family: "Google Sans Code", monospace;
}
div:active {
border: #06042c 2px solid;
}