-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (77 loc) · 1.3 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
80
81
82
83
84
85
86
87
88
89
@import url('https://fonts.googleapis.com/css2?family=Exo+2&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: "Exo 2" , sans-serif;
width: 100vw;
height: 100vh;
background: url("https://i1.faceprep.in/ProGrad/sky-moon-bg.png");
background-size: 100% 100%;
}
#ast1{
position: absolute;
top: 5%;
left: 5%;
height: 500px;
animation: floating 5s infinite ease-in;
}
#ast2 {
position: absolute;
top: 30%;
left: 30%;
height: 425px;
animation: floating 4s infinite ease-in;
}
@keyframes floating {
0%{
transform: translateY(0px);
}
50%{
transform: translateY(30px);
}
}
form{
position: absolute;
top: 15%;
left: 65%;
background-color: white;
width: 450px;
padding: 0px 75px;
border-radius: 5px;
}
.block-display{
display: block;
}
label{
font-size: 16px;
margin: 20px 0px 4px 0px ;
}
input[type="number"],
input[type="text"],
select{
width: 300px;
height: 40px;
border: 1px solid black;
padding: 0 5px;
}
.rent-button{
margin-right: 10px;
}
#button{
display: block;
border-radius: 20px;
background-color: #ec7920;
border: none;
color: white;
padding: 15px 20px;
margin: 40px auto;
}
h1{
text-align: center;
margin: 20px auto;
font-size: 1.6em;
width: 280px;
}