-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle3.css
More file actions
81 lines (74 loc) · 1.37 KB
/
style3.css
File metadata and controls
81 lines (74 loc) · 1.37 KB
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
*{
padding:0;
border:0;
margin:0;
}
.main{
position: relative;
height: 120vh;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
background-image: url("BookStore photos/bookBackground.webp");
filter: blur(10px);
z-index: -1;
filter: brightness(50%);
}
.center-box{
position: absolute;
top: 20%;
left: 35%;
backdrop-filter: blur(70px);
height: 85vh;
width: 30%;
display:flex;
flex-direction: column;
align-items: center;
background-image: url("BookStore photos/photo-1532153975070-2e9ab71f1b14.jpg");
background-position: center;
background-size: cover;
z-index: 1;
}
.box-input{
height: 5vh;
width: 100%;
}
input{
width: 90%;
height: 100%;
padding-left: 1rem;
border: none;
outline: none;
}
input:focus{
border-color: #402B3A;
box-shadow: 0 0 5px #402B3A;
}
.box-input select {
width: 90%;
height: 100%;
}
form{
display: flex;
justify-content: space-evenly;
align-items: center;
flex-direction: column;
height: 60vh;
width: 80%;
}
form .selection{
height: 20vh;
width: 100%;background-color: blanchedalmond;
}
#btn{
height: 6vh;
width: 100%;
cursor: pointer;
padding: 1rem;
font-weight: 600;
}
button:focus{
border-color:#402B3A;
box-shadow: 0 0 7px #402B3A;
}