-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
171 lines (149 loc) · 3.58 KB
/
style.css
File metadata and controls
171 lines (149 loc) · 3.58 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
html {
font: 100%/1.5 "Roboto", Verdana, sans-serif;
font-weight: lighter;
color: #884745;
overflow-x: hidden;
text-align: center;
-webkit-font-smoothing: antialiased;
}
body {
margin: auto;
padding: 100px 30px 0px;
text-align: center;
}
@-webkit-keyframes blink {
from, to { border-color: transparent }
50% { border-color: #333 }
}
@-moz-keyframes blink {
from, to { border-color: transparent }
50% { border-color: #333 }
}
@-webkit-keyframes hue {
from { -webkit-filter: hue-rotate(0deg) }
to { -webkit-filter: hue-rotate(-360deg) }
}
@-moz-keyframes hue {
from { -webkit-filter: hue-rotate(0deg) }
to { -webkit-filter: hue-rotate(-360deg) }
}
@-webkit-keyframes fadeIn {
from { position: relative; top: 40px; opacity: 0; }
to { position: relative; top: 0px; opacity: 1; }
}
@-moz-keyframes fadeIn {
from { position: relative; top: 40px; opacity: 0; }
to { position: relative; top: 0px; opacity: 1; }
}
@-webkit-keyframes multiply {
from { opacity: 0 }
25% { opacity: .1 }
50% { opacity: .2 }
to { opacity: 1 }
}
@-moz-keyframes multiply {
from { opacity: 0 }
25% { opacity: .1 }
50% { opacity: .2 }
to { opacity: 1 }
}
.fadeIn {
position: relative;
top: 0px;
opacity: 1!important;
-webkit-animation: 1s fadeIn ease;
-moz-animation: 1s fadeIn ease;
}
.text-selected {
background-color: rgba(118, 179, 218, 0.33);
}
.text-cursor {
width: 3px;
height: 100%;
border-left: 2px solid;
margin-left: 3px;
-webkit-animation: 700ms blink step-end infinite;
-moz-animation: 700ms blink step-end infinite;
}
img {
height: 200px;
width: 200px;
border-radius: 100px;
margin-bottom: 20px;
-webkit-animation: multiply 1500ms ease;
-moz-animation: multiply 1500ms ease;
}
.gradiant-body {
position: fixed;
top: 0px;
left: 0px;
margin: 0px;
height: 100%;
width: 100%;
color: #beefed;
background-image: -webkit-linear-gradient(188deg, #bedead, #beefed);
-webkit-background-clip: background-color;
-webkit-text-fill-color: transparent;
-webkit-animation: hue 60s infinite linear;
-moz-background-clip: background-color;
-moz-text-fill-color: transparent;
-moz-animation: hue 60s infinite linear;
z-index: -10;
}
.gradiant {
color: #f2e3a0;
background-image: -webkit-linear-gradient(74deg, #f2e3a0, #070604);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
.-webkit-animation: hue 60s infinite linear;
}
.heading {
font-size: 28px;
height: 100px;
z-index: 1000;
}
.user-handle {
height: 30px;
margin: 0px 0px 10px 0px;
font-size: 20px;
font-weight: lighter;
}
@media (min-width:320px) {
.header { font-size: 32px; }
}
@media (min-width:481px) {
.header { font-size: 44px; }
}
@media (min-width:641px) {
.header { font-size: 56px; }
}
@media (min-width:961px) {
.header { font-size: 72px; }
}
.heading div, .user-handle div {
display: inline-block;
}
.tags {
display: inline-block;
opacity: 0;
}
.tags div {
display: inline-flex;
}
.generic-sprite {
background: url('generic-sprite.png') no-repeat top left;
width: 15px;
height: 18px;
margin: 5px;
cursor: pointer;
}
.generic-sprite:hover {
background: url('generic-sprite-dark.png') no-repeat top left;
border-bottom: solid 2px #222;
}
.generic-sprite.facebook { background-position: 0 0; }
.generic-sprite.github { background-position: -25px 0; }
.generic-sprite.linkedin { background-position: -50px 0; }
.generic-sprite.pocket { background-position: -75px 0; width: 17px; }
.generic-sprite.stack-overflow { background-position: -102px 0; }
.generic-sprite.wordpress { background-position: -127px 0; width: 18px; }