-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogo.html
92 lines (84 loc) · 2.4 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Wikinota Logo CSS</title>
<style>
:root {
--wikinota-logo-color-background: #000;
--wikinota-logo-color-main: #fff;
}
.wikinota-logo {
position: relative;
font-size: 50px;
background: var(--wikinota-logo-color-background);
height: 10em;
width: 10em;
border-radius: 2em;
}
.wikinota-logo-outerBlock {
position: absolute;
left: 3.5em;
top: 1.5em;
height: 7em;
width: 5.5em;
border-radius: 1em;
background: var(--wikinota-logo-color-main);
transform: rotate(17deg);
}
.wikinota-logo-innerBlock {
display: block;
margin: 10% auto;
height: 10%;
width: 80%;
border-radius: 0.1em;
background: var(--wikinota-logo-color-background);
}
.wikinota-logo-speedlines span{
position: absolute;
background: var(--wikinota-logo-color-main);
height: 0.5em;
border-radius: 1em;
left: 0.5em;
}
.wikinota-logo-speedlines span:nth-child(1) {
top: 1.2em;
width: 3.8em;
}
.wikinota-logo-speedlines span:nth-child(2) {
top: 3em;
width: 3.2em;
}
.wikinota-logo-speedlines span:nth-child(3) {
top: 5em;
width: 2.6em;
}
.wikinota-logo-speedlines span:nth-child(4) {
top: 6.7em;
width: 2.2em;
}
.wikinota-logo-speedlines span:nth-child(5) {
top: 8.4em;
width: 4.5em;
}
</style>
</head>
<body>
<div class="wikinota-logo">
<div class="wikinota-logo-speedlines">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<div class="wikinota-logo-outerBlock">
<span class="wikinota-logo-innerBlock"></span>
<span class="wikinota-logo-innerBlock"></span>
<span class="wikinota-logo-innerBlock"></span>
<span class="wikinota-logo-innerBlock"></span>
<span class="wikinota-logo-innerBlock"></span>
</div>
</div>
</body>
</html>