-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (55 loc) · 1.34 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
@font-face {
font-family: 'CANAVAR Extra';
src: url('CANAVAR-ExtraBold.woff2') format('woff2'),
url('CANAVAR-ExtraBold.woff') format('woff');
font-weight: bold;
font-style: normal;
font-display: swap;
}
* {
font-family: 'CANAVAR Extra', sans-serif;
text-shadow: #FC0 1px 0 10px;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-items: stretch;
justify-content: center;
margin: auto;
background-image: url(background.jpg);
background-repeat: no-repeat;
background-position: center;
height: 95vh;
}
.fade-in {
-webkit-animation: fade-in 1s cubic-bezier(0.600, -0.280, 0.735, 0.045) both;
animation: fade-in 1s cubic-bezier(0.600, -0.280, 0.735, 0.045) both;
}
/* ----------------------------------------------
* Generated by Animista on 2024-6-5 21:41:16
* Licensed under FreeBSD License.
* See http://animista.net/license for more info.
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */
/**
* ----------------------------------------
* animation fade-in
* ----------------------------------------
*/
@-webkit-keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}