-
Notifications
You must be signed in to change notification settings - Fork 0
/
logo.html
68 lines (59 loc) · 1.54 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
html {
height: 100%;
}
body {
background-color: #fefefe;
min-height: 100%;
display: flex;
flex-direction: column;
}
* {
margin: 0;
padding: 0;
}
.logo {
--cobalt-blue-hue: 215;
--cobalt-blue-saturation: 100%;
--cobalt-blue-lightness: 34%;
margin: 100px auto;
font-family: Arial;
font-size: 100px;
display: flex;
padding: 50px 100px;
border-radius: 10px;
background-color: #000;
}
.logo .symbol {
color: #fefefe;
padding: 10px;
/*border: 5px solid hsl(
var(--cobalt-blue-hue),
var(--cobalt-blue-saturation),
var(--cobalt-blue-lightness)
);*/
border-radius: 5px;
background-color: hsl(
var(--cobalt-blue-hue),
var(--cobalt-blue-saturation),
calc(var(--cobalt-blue-lightness) * 1.1)
);
}
.logo .text {
/*border: 5px solid transparent;*/
padding: 10px;
color: #fefefe;
}
</style>
</head>
<body>
<div class="logo">
<span class="symbol">Ko</span>
<span class="text">bolt</span>
</div>
</body>
</html>