-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle3.css
122 lines (118 loc) · 2.14 KB
/
style3.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
body{
background-color:#1D1227;
}
h1 {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #ff00de, 0 0 70px #ff00de, 0 0 80px #ff00de, 0 0 100px #ff00de, 0 0 150px #ff00de;
text-align: center;
}
h2{
text-align: center;
color: #B2ADB4;
}
p{
color: #B2ADB4;
}
form {
max-width: 500px;
margin: 10px auto;
background-color: #1D1227;
padding: 20px;
border-radius: 10px;
border: 10px solid green;
}
label {
display: block;
margin-bottom: 5px;
color: #B2ADB4;
}
input[type="text"],
input[type="email"],
input[type="date"],
input[type="time"] {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
}
input[type="submit"] {
display: block;
background-color: #4CAF50;
color: #fff;
border: none;
padding: 10px;
border-radius: 5px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #3e8e41;
}
.slot-booked {
display: flex;
justify-content: center;
margin-top: 10px;
font-size: 24px;
color: #B2ADB4;
}
/* .header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 60px;
background-color: #fff;
z-index: 9999;
} */
.line {
height: 2px;
background-color: #000;
}
.scroll {
overflow: hidden;
}
.scrolling-text {
margin-top: 60px;
padding: 20px;
height: 80px;
overflow: hidden;
animation: scroll 15s linear infinite;
}
.scrolling-text p {
margin: 0;
line-height: 1.5;
font-size: 18px;
}
@keyframes scroll {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-100%);
}
}
button {
justify-content: center;
padding: 10px;
margin: 10px;
border-radius: 5px;
border: none;
background-color: #4CAF50;
color: white;
font-size: 18px;
cursor: pointer;
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
width: 300px;
}
.dilverypng {
position: absolute;
top: 200px;
left: 50%;
transform: translateX(-50%);
border-radius: 50%;
width: 100px;
height: 100px;
object-fit: cover;
object-position: center top;
}