-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlogo.css
54 lines (48 loc) · 932 Bytes
/
logo.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
body {
margin: 150px;
text-align: center;
}
.mango,
.mango span {
width: 250px;
height: 250px;
line-height: 250px;
border-radius: 50% / 12%;
overflow: hidden;
display: inline-block;
}
.mango {
text-align: center;
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
transform: rotate(90deg);
}
.mango span {
font-family: "Helvetica Neue", Helvetica, Arial;
font-size: 9em;
color: #fff;
background-color: #19B530;
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
transform :rotate(-90deg);
}
.mango span:before,
.mango span:after {
display: inline-block;
font-size: 1.2em;
line-height: 1em;
left: .69em;
position: absolute;
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
transform: rotate(90deg);
font-weight: 500;
}
.mango span:before {
content: '[';
top: -8px;
}
.mango span:after {
content: ']';
bottom: -8px;
}