-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
125 lines (107 loc) · 2.18 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
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
115
116
117
118
119
120
121
122
123
124
125
html {
height: 100%;
width: 100%;
font-size: 8px;
}
body {
background-color: #121214;
background-image: url('./escheresque.png'); /* Background pattern from Toptal Subtle Patterns */
box-sizing: border-box;
color: #f7f7ff;
font-family: 'Quicksand', sans-serif;
height: 100%;
margin: 0;
padding: 1rem;
width: 100%;
}
body:after {
content: '';
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
background: radial-gradient(circle, transparent 0%, #000 300%);
mix-blend-mode: difference;
pointer-events: none;
}
div.card {
padding-left: 4rem;
position: absolute;
top: 20%;
}
h1.name {
animation: fadein 2s ease-in-out 0s;
animation-fill-mode: forwards;
font-family: 'Raleway', sans-serif;
font-size: 5rem;
font-weight: normal;
line-height: normal;
margin: 0 0 1.5rem;
opacity: 0;
text-transform: uppercase;
white-space: nowrap;
}
h2.title {
animation: fadein 2s ease-in-out 0.1s;
animation-fill-mode: forwards;
font-family: 'Quicksand', sans-serif;
font-size: 2.5rem;
font-weight: 300;
line-height: normal;
margin: 0 0 1.5rem;
opacity: 0;
white-space: nowrap;
}
ul.contact-info {
list-style: none;
margin: 0;
padding: 0;
}
li.contact-info-item {
display: inline-block;
font-size: 3rem;
margin-right: 1em;
opacity: 0;
}
#github {
animation: fadein 2s ease-in-out 0.2s;
animation-fill-mode: forwards;
}
#linkedin {
animation: fadein 2s ease-in-out 0.3s;
animation-fill-mode: forwards;
}
#email {
animation: fadein 2s ease-in-out 0.4s;
animation-fill-mode: forwards;
}
a.contact-info-link {
color: #f7f7ff;
outline: none;
transition: color ease-in-out 0.05s;
}
a.contact-info-link:hover,
a.contact-info-link:focus {
color: #2c75ff;
}
a.contact-info-link:active {
color: #235dcc;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@media (min-width: 576px) {
html {
font-size: 14px;
}
}
@media (min-width: 768px) {
html {
font-size: 16px;
}
}
@media (min-width: 992px) {}
@media (min-width: 1200px) {}