-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_header.scss
90 lines (76 loc) · 1.76 KB
/
_header.scss
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
body>header {
padding-top: 2rem;
padding-bottom: 2rem;
section.top {
display: flex;
justify-content: space-between;
align-items: center;
padding-bottom: 2rem;
@media screen and (max-width: calc($break-mobile + 200px)) {
flex-direction: column;
gap: 2rem;
}
section.header {
display: flex;
justify-content: start;
align-items: center;
#avatar {
// position: absolute;
border-radius: 50%;
width: 5rem;
height: 5rem;
margin-right: 1rem;
}
.text {
text-align: left;
// margin-top: 1rem;
font-family: var(--font-serif);
h1 {
font-family: var(--font-serif);
// text-transform: uppercase;
// text-align: center;
margin-bottom: 0;
padding: 0;
line-height: 2rem;
}
a {
font-family: var(--font-serif);
text-decoration: none;
color: var(--color-body);
font-weight: bold;
&:hover {
text-decoration: none;
}
}
em, em a {
font-weight: normal;
font-style: normal;
}
p {
text-align: center;
padding: 0;
margin: 0;
}
}
}
.social {
display: flex;
flex-direction: row;
justify-content: end;
align-items: center;
a {
display: block;
padding: 0 1rem;
color: var(--color-foreground);
font-size: 1.5rem;
&:hover,
&::selection {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
color: var(--color-nav-hover);
text-decoration: none;
background: transparent;
}
}
}
}
}