-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkout.css
52 lines (48 loc) · 1.01 KB
/
checkout.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
*{
margin: 0%;
padding: 0%;
}
body{
background-image: url("../imgs/bg.webp");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height:100%;
}
#loading{
position: fixed;
width: 100%;
height: 100vh;
background: #f5d9d5 url('imgs/Spinner.gif');
background-repeat: no-repeat;
background-position: center;
z-index: 99999;
}
nav{
opacity: .9;
font-weight: 600;
font-family: 'Dancing Script', cursive;
background-color: rgb(22, 13, 1);
color: #eb9868;
font-size: 42px;
padding: 15px;
text-align: center ;
text-transform: uppercase;
}
.form-control{
width: 100px;
}
#n,#e,#naam,#a{
font-size: 15px;
color: white;
}
#errorMessage{
float: right;
color: red;
font-size: 19px;
}
@media(max-width:600px){
nav{
font-size: 35px;
}
}