-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (71 loc) · 1.44 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
h1 {
/* text-align: center; */
font-family: fantasy ;
/* color: rgb(273, 72, 50); */
background: rgb(1,6,14);
background: linear-gradient(90deg, rgba(1,6,14,1) 0%, rgba(31,77,155,1) 46%, rgba(49,108,118,1) 100%);
}
.logo{
color: #c9d0e9;
}
.test{
font-family: fantasy;
}
.container-fluid {
text-align: center;
font-family: fantasy;
background-color: #c9d0e9;
}
.navbar-nav{
display: flex;
justify-content: center;
}
.navbar-toggler{
text-align: center;
display: flex;
justify-content: center;
}
.test {
font-size:xx-large;
animation: 1.90s ease-out 0s 1 slideInLeft;
}
@keyframes slideInLeft {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(0)
}
}
@keyframes slideInLeft {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(0)
}
}
@-webkit-keyframes scale {
0% { transform: scale(0.5,0.5); }
100% { transform: scale(1,1); }
}
@-moz-keyframes scale {
0% { transform: scale(0.5,0.5); }
100% { transform: scale(1,1); }
}
@-o-keyframes scale {
0% { transform: scale(0.5,0.5); }
100% { transform: scale(1,1); }
}
@keyframes scale {
0% { transform: scale(0.5,0.5); }
100% { transform: scale(1,1); }
}
.card {
animation-name: scale;
animation-duration: 2s;
animation-fill-mode: forwards;
}
li:hover{
background-color: #7982a1;
}