-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
113 lines (98 loc) · 2.02 KB
/
index.css
File metadata and controls
113 lines (98 loc) · 2.02 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
@import url('https://fonts.googleapis.com/css?family=Anonymous+Pro');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
body, * {
padding: 0;
margin: 0;
font-family: 'Anonymous Pro', monospace;
color: white;
overflow: hidden;
user-select: none;
}
body {
background-color: rgb(25, 25, 25);
overflow: hidden;
user-select: none;
}
span {
color: white;
}
.cursorline{
position: relative;
top: 50%;
width: 16em;
border-right: solid 2px rgba(255, 255, 255, 0.75);
font-size: 30px;
text-align: center;
white-space: nowrap;
transform: translateY(160%);
margin: 0 auto;
overflow: hidden;
}
.type {
animation: typeEffect 5s steps(40) 1s 1 normal both, cursorBlinkEffect 540ms steps(40) infinite normal;
}
@keyframes typeEffect {
from {
width: 0;
}
to {
width: 15em;
}
}
@keyframes cursorBlinkEffect {
from {
border-right-color: rgba(255, 255, 255, 0.75);
}
to {
border-right-color: transparent;
}
}
.lali {
list-style: none;
display: inline-block;
padding: 15px 30px;
border: 2px;
border-style: solid;
}
a {
text-align: center;
color: white;
text-decoration: none;
font-size: 1.2vw;
letter-spacing: 0;
}
a:hover {
color: rgb(59, 132, 214);
transition: 0.7s;
letter-spacing: 2px;
border-bottom-style: groove;
border-bottom-width: medium;
border-top: 2px solid rgb(59, 132, 214);
}
@keyframes skol {
from {
transform: translateX(500%);
}
to {
transform: translateX(0);
}
}
.irip {
background-color: rgb(24, 24, 24);
color: whitesmoke;
margin: 0 auto;
padding: 21px;
width: 500px;
height: 700px;
font-family: 'Open Sans', sans-serif;
font-size: 90%;
text-align: justify;
column-count: auto;
}
.ma {
position: absolute;
right: 46%;
bottom: 80%;
font-size: 30px;
}
* {cursor: url(http://cur.cursors-4u.net/cursors/cur-11/cur1054.cur), auto !important;}