-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappoint.css
52 lines (45 loc) · 1010 Bytes
/
appoint.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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body,
html {
height: 100px;
margin: 0;
font-family: 'poppins', sans-serif;
}
.background {
background-image: url('https://th.bing.com/th/id/OIP.8zJYriRG6Cboi60OoY2xpwHaEo?rs=1&pid=ImgDetMain');
background-size: cover;
background-position: center;
height: 34rem;
display: flex;
padding-bottom: 1rem;
padding-top: 1rem;
align-items: center;
justify-content: center;
}
.appointment {
background-color: rgba(121, 193, 231, 0.7);
padding: 20px;
border-radius: 10px;
max-width: 500px;
width: 80%;
}
.appointment h2 {
text-align: center;
}
.appointment form {
display: flex;
flex-direction: column;
}
.appointment input {
padding: 8px;
border: 1px solid #767373;
border-radius: 5px;
}
.save {
padding: 10px;
background-color: #1a2b1a23;
color: rgb(184, 176, 176);
border: none;
border-radius: 5px;
cursor: pointer;
}