-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (55 loc) · 2.11 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
html {
font-family: 'Catamaran', sans-serif;
background-color: #0b0b0b;
color: #e8e6e3;
}
body{
padding:0px;
margin:0px;
}
main{
display: grid;
grid-template-rows: 100vh;
grid-template-columns: 100vw;
padding: 0px;
margin: 0px;
}
div{
justify-self: center;
align-self: center;
text-align: center;
padding: 0px;
margin: 0px;
-webkit-animation: scale-in-center 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation: scale-in-center 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
footer {
text-align: center;
padding: 50px;
position: fixed;
left: 50%;
transform: translate(-50%, 0%);
margin-right: -50%;
bottom: 0px;
padding:0px;
font-size: 1.25rem;
-webkit-animation: fade-in-bottom .4s cubic-bezier(.23,1.000,.32,1.000) both;
animation: fade-in-bottom .4s cubic-bezier(.23,1.000,.32,1.000) both
}
a {
font-size: 2.5rem
}
/* ----------------------------------------------
* Generated by Animista on 2020-11-29 21:12:18
* Licensed under FreeBSD License.
* See http://animista.net/license for more info.
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */
@-webkit-keyframes fade-in-bottom{0%{-webkit-transform:translate(-50%, 50px);transform:translate(-50%, 50px);opacity:0}100%{-webkit-transform:translate(-50%, 0px);transform:translate(-50%, 0px);opacity:1}}@keyframes fade-in-bottom{0%{-webkit-transform:translate(-50%, 50px);transform:translate(-50%, 50px);opacity:0}100%{-webkit-transform:translate(-50%, 0px);transform:translate(-50%, 0px);opacity:1}}
/* ----------------------------------------------
* Generated by Animista on 2020-12-2 12:9:52
* Licensed under FreeBSD License.
* See http://animista.net/license for more info.
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */
@-webkit-keyframes scale-in-center{0%{-webkit-transform:scale(.4);transform:scale(.4);opacity:1}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes scale-in-center{0%{-webkit-transform:scale(.4);transform:scale(.4);opacity:1}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}