-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (48 loc) Β· 1.06 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
*{
font-family: 'Poppins', sans-serif;
padding: 0;
margin: 0;
box-sizing: 0;
}
body::-webkit-scrollbar{
display: none;
}
#Container{
width: 100vw;
height: 100% ;
background: linear-gradient(#2b134a , #000);
display: flex;
justify-content: center;
align-items: center;
}
#Glass-Container{
width: 85%;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-radius: 20px;
border:1px solid rgba(255, 255, 255, 0.18);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
margin: 115px;
}
#select-section{
padding: 20px;
}
.Times-day{
width: 100%;
height: 100%;
display: flex;
flex-wrap: wrap;
}
#Day-Times{
width: 200px;
border-radius: 5px;
height: 130px;
background: #ffff32;
background-size: cover;
text-align: center;
align-items: center;
margin: 20px;
flex-grow: 1;
flex-basis: 200px;
}