-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
102 lines (87 loc) · 1.67 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
.props {
position: fixed;
bottom: 0px;
right: 0px;
height: 100%;
display: flex;
}
.imgprops {
max-width: 100%;
max-height: 100%;
}
.title {
display: flex;
justify-content: center;
width: 100px;
height: 100px;
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
.typewriter h1{
font-family: 'Reenie Beanie', cursive;
color:rgb(66, 66, 66);
font-size: 50px;
overflow: hidden;
border-right: .1em solid rgba(0, 0, 0, 0);
white-space: nowrap;
margin: 0 auto;
letter-spacing: 0.1em;
animation: typing 4s steps(50, end),
blink-caret 3s step-end 3;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: transparent }
}
.buttonprop {
font-family: 'Reenie Beanie', cursive;
font-size: larger;
background-color: transparent;
border: none;
display: flex;
justify-content: center;
width: 500px;
height: 500px;
position: absolute;
top: 100;
bottom: 0;
left: 0;
right: 0;
margin: auto;
z-index: 5;
}
.lineart img.image-hover {
position: absolute;
top:0;
right: 0;
left: 0;
bottom: 0;
object-fit: contain;
opacity: 0;
transition: opacity 0.3s;
}
.lineart:hover img.image-hover {
opacity: 1;
}
.laprops {
max-height: 100%;
max-width: 100%;
}
footer{
position: fixed;
left: 0%;
bottom: 0%;
width: 100%;
height: 22px;
text-align: center;
padding-bottom: 1.5em;
}