-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
124 lines (110 loc) · 2.35 KB
/
style.css
File metadata and controls
124 lines (110 loc) · 2.35 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
* { box-sizing: border-box; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; margin: 0; padding: 0;}
body {
position: absolute;
width: 100%;
height: 100%;
background-color: #f0f0f0;
/* font-family: Courier, monospace; */
font-family: "Open Sans";
font-weight: 100;
color: #202020;
}
.lg-container {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
text-align: center;
}
.container {
position: absolute;
left: 50%;
top: 50%;
max-width: 20em;
width: 100%;
height: 10em;
margin: -5em -10em;
text-align: center;
}
body * {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
}
#main_ref {
position: relative;
display: block;
overflow: hidden;
width: 4em;
height: 4em;
margin: 0 auto;
padding: 0.6em;
background-color: #f0f0f0;
border-radius: 50%;
transition: all .15s ease-in-out;
opacity: 0;
animation: logo .25s ease-out 4.4s 1 normal forwards;
}
@keyframes logo {
0% { transform: rotate(25deg) scale(.01); opacity: 0; }
70% { transform: scale(1.4); opacity: 1; }
100% { transform: scale(1); opacity: 1; }
}
.typer-wrapper {
position: relative;
display: block;
overflow: visible;
width: 100%;
height: 1.25em;
margin: 1em auto;
font-size: 1.3em;
line-height: 1.5em;
box-sizing: content-box;
}
.typer-wrapper span {
display: block;
width: 100%;
}
.pages {
position: relative;
max-width: 50em;
margin: 0 auto;
padding-right: 1.5em;
}
.pages li {
line-height: 0em;
list-style-type: none;
margin: 0.7em;
float: right;
}
.contact {
position: relative;
width: 20em;
max-width: 100%;
margin: -1em auto 1.5em auto;
}
a {
text-decoration: none;
display: inline-block;
overflow: hidden;
line-height: 2em;
color: #f0f0f0;
font-size: 1.5em;
transition: all .15s ease-in-out;
}
.contact a {
margin: 0 .0em;
border-radius: 50%;
width: 2em;
}
a:hover { color: rgb(92, 92, 92) !important; }
canvas {
display: block;
width: 100vw;
height: 100vh;
}