-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
114 lines (98 loc) · 1.88 KB
/
index.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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
@import url("https://fonts.googleapis.com/css2?family=Fira+Mono&family=Lato:wght@300;700&display=swap");
body {
display: flex;
flex-direction: column;
background-color: #1b1a17;
align-items: center;
}
#container {
margin-top: 22vh;
width: 70vw;
height: 15vw;
display: flex;
flex-direction: row;
align-items: flex-start;
}
#profile-picture {
height: fit-content;
border: 3px #9f9f92 solid;
margin-right: 5vw;
}
#profile-picture > img {
position: relative;
bottom: 15px;
left: 15px;
}
#profile-picture,
#profile-picture > img {
width: 15vw;
border-radius: 3px;
}
#introduction {
display: flex;
flex-direction: column;
justify-content: space-between;
height: inherit !important;
}
#hello {
font-family: "Fira Mono", monospace;
color: grey;
font-size: 1.5rem;
}
#name {
font-family: "Lato", sans-serif;
color: white;
font-weight: 700;
font-size: 4rem;
}
#whoami {
font-family: "Lato", sans-serif;
color: #d6d6d6;
font-size: 4rem;
}
#github-handle {
font-family: "Fira Mono", monospace;
color: #ffb17a;
font-size: 1rem;
justify-self: flex-end;
text-decoration: underline;
}
#newlink {
font-family: "Fira Mono", monospace;
color: #ffb17a;
font-size: 1rem;
justify-self: flex-end;
text-decoration: underline;
}
#linkedin {
font-family: "Fira Mono", monospace;
color: #ffb17a;
font-size: 1rem;
justify-self: flex-end;
text-decoration: underline;
}
#facebook {
font-family: "Fira Mono", monospace;
color: #ffb17a;
font-size: 1rem;
justify-self: flex-end;
text-decoration: underline;
}
#insta {
font-family: "Fira Mono", monospace;
color: #ffb17a;
font-size: 1rem;
justify-self: flex-end;
text-decoration: underline;
}
#itch {
font-family: "Fira Mono", monospace;
color: #ffb17a;
font-size: 1rem;
justify-self: flex-end;
text-decoration: underline;
}
a {
text-decoration: none;
color: inherit;
}