-
Notifications
You must be signed in to change notification settings - Fork 0
/
#87-Building-Blocks.htm
54 lines (48 loc) · 1.46 KB
/
#87-Building-Blocks.htm
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
<ul>
<li a>
<li b>
<li c>
<ul x>
<li a>
<li b>
<li c>
<style>
* {
margin: 0;
padding: 0
}
body {
background: #F3AC3C
}
ul {
list-style: none;
position: absolute;
top: 65;
left: 16.2%
}
[a],
[b] {
width: 150;
height: 50;
background: #1A4341;
border-radius: 10px 10px 10px 0
}
[b] {
width: 100;
height: 50;
border-radius: 0 0 10px 10px;
box-shadow: 20px -20px #1A4341
}
[c] {
width: 50;
height: 50;
background: #F3AC3C;
border-radius: 10px;
position: absolute;
bottom: 0;
right: 0
}
[x] {
top: 40%;
left: 40%;
transform: rotate(180deg)