-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (65 loc) · 1.49 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
* {
margin: 0;
padding: 0;
}
body {
background-color: #efd2cb;
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
font-size: 20px;
}
.table {
background: rgb(243, 123, 32);
background: linear-gradient(
180deg,
rgba(243, 123, 32, 1) 0%,
rgba(243, 117, 128, 1) 79%,
rgba(243, 116, 139, 1) 100%
);
border: 1px solid white;
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
width: 400px;
height: 400px;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.row {
display: flex;
justify-content: center;
align-items: center;
gap: 38px;
}
.padItem {
background-color: #efd2cb;
box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
width: 90px;
height: 90px;
display: flex;
justify-content: center;
align-items: center;
transition: all 0.1s;
border: 1px solid rgb(242, 191, 255);
}
.pad-item-on {
transform: scale(1.1);
border-color: #ffc600;
box-shadow: 0 0 1rem #ffc600;
}
h1 {
display: inline-block;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
color: rgb(255, 255, 255);
text-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
display: flex;
justify-content: center;
margin-top: 140px;
}