-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
93 lines (86 loc) · 1.56 KB
/
style.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
@keyframes initMove {
from {transform: translateY(100px);
opacity: 0%;}
to {transform: translateY(0px);
opacity: 100%;}
}
body
{
margin: 0;
}
.wrap-layer{
position: relative;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
height: cover;
width: cover;
/*border: 5px;
border-style: solid;
border-color: red; */
}
.text-layer{
position: absolute;
top: 100px;
left: 25px;
animation: initMove 1s ease-out;
}
.background-layer{
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
height: 100%;
width: 100%;
/*border: 5px;
border-style: solid;
border-color: blue; */
}
.loremipsum
{
font-style:normal;
font-variant:normal;
font-weight:normal;
font-stretch:normal;
font-family:'CaskaydiaCove NF', sans-serif;
color:#f9f9f9;
stroke-width:1.06827;
padding: 50px;
}
#loremipsumHeader
{
font-size:256.385px;
letter-spacing:2.58521px;
stroke-width:1.06827px;
margin-bottom: 0px;
}
#loremipsumUnderline
{
font-size:28.4872px;
}
#loremipsumParagraph
{
font-family:'Atkinson Hyperlegible', sans-serif;
font-size:25.63846857px;
}
#generateKey
{
text-align: center;
width: 775px;
height: 50px;
border: 2px solid white;
border-radius: 50px;
cursor: pointer;
background-color: transparent;
color: white;
font-size:28.4872px;
transition: all 0.3s ease;
}
#generateKey:hover {
background-color: white;
color: black;
transform: translateY(-5px);
border: 3px solid white;
font-weight: bold;
}