-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (46 loc) · 882 Bytes
/
Copy pathstyle.css
File metadata and controls
53 lines (46 loc) · 882 Bytes
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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Courier New', Courier, monospace;
}
body {
background-color: #2b2d42;
color: aliceblue;
}
.container {
width: 1100px;
margin: 0 auto;
overflow: auto;
padding: 0 40px;
height: 100%;
margin-bottom: 100px;
}
.flex {
display: flex;
grid-template-columns: repeat(1, 1fr);
justify-content: center;
align-items: center;
gap: 50px;
}
.box {
border: 1px silver solid;
width: 100px;
height: 100px;
text-align: center;
margin-top: 200px;
margin-bottom: 300px;
transition: all 2.07s;
}
.box h1 {
margin-top: 10px;
}
.box p {
padding: 5px;
color: tan;
}
.playing {
transform: scale(1.1);
border: 3px goldenrod solid;
box-shadow: honeydew;
}