-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
98 lines (97 loc) · 1.96 KB
/
styles.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
h1{
text-align: center;
padding-top: 1%;
padding-bottom: 2%;
margin:0;
font-family: 'Press Start 2P', cursive;
color: black;
}
.table-box{
margin-left: auto;
margin-right: auto;
border-collapse:separate;
border-spacing: 2rem 2rem;
}
.box{
border: 10px solid black;
height: 200px;
width: 200px;
border-radius: 50px;
}
h6{
padding-top: 1%;
color: white;
font-family: 'Abel', sans-serif;
}
.pressed {
box-shadow: 0 0 20px white;
background-color: grey;
}
.navbar{
font-family: "Bebas Neue", cursive;
font-size: 1.5rem;
font-weight: 600;
}
#NAVIGATION-BAR .nav-link{
padding-right: 30px;
padding-top: 30px;
}
/*------------------------ MODAL-------------------- */
.modal-title{
text-align: center;
font-size:2rem;
width: 100%;
}
.modal-title{
font-family: 'Bebas Neue', cursive;
text-align: center;
font-size:2rem;
width: 100%;
}
.modal-text{
font-family: 'Bebas Neue', cursive;
font-size: 1rem;
}
.modal-footer-btn{
font-family: 'Bebas Neue', cursive;
width: 100%;
font-size: 1.5rem;
}
#PRELOADER{
background: black;
height: 100vh;
width: 100vw;
position: fixed;
z-index: 100;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
#PRELOADER h2{
font-size: 5rem;
color: white;
}
#PRELOADER .loader{
background-color: black;
font-family: 'Press Start 2P', cursive;
animation: mover 1s infinite alternate;
}
#CONTENT h1{
font-family: 'Press Start 2P', cursive;
animation: mover 1s infinite alternate;
font-size: 3rem;
}
@keyframes mover {
0% {
transform: translateY(-5px);
}
100% {
transform: translateY(5px);
}
}
#CONTENT{
background-image: linear-gradient(135deg,#061724,#043045,#0870a0,#E7F6F2);
height: 100vh;
width: 100vw;
}