-
Notifications
You must be signed in to change notification settings - Fork 0
/
14.Web-Maker-Logo.html
53 lines (49 loc) · 987 Bytes
/
14.Web-Maker-Logo.html
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
<div class="light2"></div>
<div class="dark1"></div>
<div class="dark2"></div>
<div class="light1"></div>
<style>
body {
background: #F2F2B6;
}
.dark1 {
position:absolute;
left:70;
top:75;
border-style: solid;
border-width: 75px 0 75px 129.9px;
border-color: transparent transparent transparent #FF6D00;
transform: rotateZ(90deg)
}
.dark2 {
position:absolute;
right:70;
top:75;
border-style: solid;
border-width: 75px 0 75px 129.9px;
border-color: transparent transparent transparent #FF6D00;
transform: rotateZ(-90deg)
}
.light1 {
position:absolute;
right:90;
top:75;
width: 0;
height: 0;
border-style: solid;
border-width: 75px 0 75px 129.9px;
border-color: transparent transparent transparent #FD4602;
transform: rotateZ(-90deg)
}
.light2 {
position:absolute;
left:90;
top:75;
width: 0;
height: 0;
border-style: solid;
border-width: 75px 0 75px 129.9px;
border-color: transparent transparent transparent #FD4602;
transform: rotateZ(90deg)
}
</style>