-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathswitchme-logo-color.html
More file actions
58 lines (52 loc) · 1.37 KB
/
switchme-logo-color.html
File metadata and controls
58 lines (52 loc) · 1.37 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>SwitchMe Logo</title>
<style>
@import url('https://fonts.googleapis.com/css?family=Maven+Pro:700');
span {
position: relative;
display: table;
margin-top: 15px;
padding: 10px 40px 10px 15px;
background: #26b78b;
border: 10px solid #fff;
outline: 10px solid #26b78b;
color: #fff;
font-family: 'Maven Pro', sans-serif;
font-size: 50px;
}
span::after {
content: '';
position: absolute;
top: -15px;
right: -15px;
height: 35px;
width: 35px;
background: #26b78b;
border-top: 10px solid #fff;
border-right: 10px solid #fff;
outline: 10px solid #26b78b;
}
span:before {
content: '';
position: absolute;
top: -15px;
right: 3px;
z-index: 2;
height: 45px;
width: 10px;
background: #fff;
transform: rotate(45deg);
}
</style>
</head>
<body>
<span>
SwitchMe
</span>
</body>
</html>