-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
39 lines (38 loc) · 835 Bytes
/
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
body {
background-image: radial-gradient(
circle at center center,
rgb(6, 242, 198),
rgb(12, 102, 197)
);
}
.boxes {
margin: 50px auto;
width: max-content;
display: grid;
grid-template-columns: repeat(4, 100px);
gap: 20px;
box-sizing: border-box;
}
.box {
background-color: bisque;
height: 100px;
cursor: pointer;
box-shadow: -1px 3px 13px 1px rgba(231, 11, 11, 1);
-webkit-box-shadow: -1px 3px 13px 1px rgba(231, 11, 11, 1);
-moz-box-shadow: -1px 3px 13px 1px rgba(231, 11, 11, 1);
display: flex;
justify-content: center;
align-items: center;
font-style: italic;
}
h1 {
background-image: radial-gradient(
circle at center center,
rgb(252, 252, 252),
rgb(129, 129, 129)
);
display: flex;
justify-content: center;
color: rgb(13, 29, 121);
font-family: fantasy;
}