-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogo.css
58 lines (50 loc) · 935 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
55
56
57
58
@font-face {
font-family: Hattan Antique;
src: url('../assets/fonts/hattanantique-kit.woff');
font-display: swap;
}
@font-face {
font-family: Parisian;
src: url('../assets/fonts/parisian-kit.woff');
font-display: swap;
}
* {
margin: 0;
padding: 0;
}
.logo {
background: #1A1A1A;
border-radius: 0.15em;
font-family: Parisian, sans-serif;
font-size: 2em;
z-index: 1;
height: 3.5em;
width: 3.5em;
box-sizing: border-box;
padding-top: 20px;
padding-left: 5px;
}
@media screen and (max-width: 720px) {
.logo {
font-size: 1.25em;
padding-top: 10px;
padding-left: 3px;
}
}
.name {
display: block;
margin-left: 0.2em;
margin-bottom: -1.65em;
}
.surname {
display: inline-block;
margin-left: -0.5em;
vertical-align: 0.2em;
}
.surname__firstLatter {
font-family: Hattan Antique, sans-serif !important;
font-size: 2em;
}
.surname::first-letter {
color: transparent;
}