-
Notifications
You must be signed in to change notification settings - Fork 9
/
style.css
66 lines (58 loc) · 1.01 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
#a {
background-color: white;
height: 200px;
border-right: 16px solid black;
border-bottom: 16px solid black;
}
#b {
background-color: white;
height: 200px;
border-right: 16px solid black;
border-bottom: 16px solid black;
border-top: 14px solid black;
}
#c {
background-color: red;
height: 400px;
border-bottom: 16px solid black;
}
#d {
background-color: #2d8cda;
height: 200px;
border-right: 16px solid black;
}
#e {
background-color: white;
border-right: 16px solid black;
}
#f {
background-color: white;
height: 100px;
border-bottom: 14px solid black;
}
#g {
background-color: yellow;
height: 100px;
border-top: 14px solid black;
}
.container {
position: absolute;
top: 6%;
left: 25%;
border: 12px solid white;
height: 620px;
width: 780px;
}
body {
background-color: black;
}
#a,#b,#c,#d,#e,#f,#g{
display: flex;
justify-content: center;
align-items: center;
}
.styleClass {
transform: scale(1.2) translateY(10px);
z-index: 1;
border: 3px solid grey;
}