-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
64 lines (60 loc) · 905 Bytes
/
index.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
* {
margin: 0px;
padding: 0px;
}
body {
background-color: rgb(209,255,203);
}
.nav {
background-color: rgb(22,38,42);
}
.nav ul {
display: flex;
justify-content: left;
align-items: center;
align-content: center;
}
li {
list-style: none;
text-decoration: none;
margin: 9px;
}
li a:hover {
color: yellow;
}
.form-control {
margin: 7px;
padding: 9px;
display: flex;
flex-wrap: wrap;
}
#btn {
margin: 9px;
}
/*
.addbook {
width: 100%;
height: 53vh;
display: flex;
align-content: center;
align-items: center;
justify-content: center;
*/
.booking {
height: 55vh;
background-image: radial-gradient(#0d677e, #0867a2, #00ccff);
display: flex;
align-content: center;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
/*
#btn {
padding: 9px;
border-radius: 9px;
outline: none;
background-color: rgb(55,12,121);
color: white;
}
*/