-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
55 lines (45 loc) · 1.09 KB
/
styles.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
*, *:before, *:after {
box-sizing: border-box; }
html {
font-size: 62.5%; }
body {
font-family: 'Enriqueta', serif;
font-size: 1.5rem;
color: #333; }
h1, h2, h3, h4, h5, h6 {
font-family: 'Archivo', sans-serif; }
:link, :visited {
text-decoration: none;
background-image: repeating-linear-gradient(to right, currentColor, currentColor 2px, transparent 2px, transparent 4px);
background-repeat: space no-repeat;
background-position: 0 1.9rem;
background-size: 0.5rem;
color: inherit; }
:link:focus, :visited:focus {
outline: none;
background-color: #ddd; }
:link:hover, :visited:hover {
color: #777; }
:link:active, :visited:active {
color: #bbb; }
.Main {
max-width: 50rem;
margin: 0 auto; }
.Contact {
margin: 0 0 3rem; }
.Contact__header {
display: flex;
justify-content: space-between;
margin: 0 0 1.5rem; }
.Contact__name {
margin: 0;
font-size: 5rem;
line-height: 5rem;
white-space: pre-line; }
.Contact__picture {
height: 15rem;
border-radius: 0.4rem; }
.About {
display: flex; }
.About__section {
flex: 1; }