-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (68 loc) · 1.31 KB
/
style.css
File metadata and controls
78 lines (68 loc) · 1.31 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
* {
margin: 0%;
padding: 0%;
box-sizing: border-box;
font-family: 'poppins', sans-serif;
}
body {
width: 100%;
height: fit-content;
display: flex;
justify-content: center;
background-image: url(./images/bgwallpaper.jpg);
background-repeat: no-repeat;
background-position: 50% 50%;
}
form>div {
padding: 10px 20px;
}
main {
background-color: transparent;
color: white;
width: 40%;
backdrop-filter: blur(10px);
box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
border-radius: 10px;
margin: 40px 0px;
}
div>span {
position: relative;
}
span>input {
padding: 10px;
border-radius: 10px;
outline: none;
border: 2px solid #3f3f33;
width: 100%;
}
select {
padding: 10px;
border-radius: 10px;
width: 100%;
outline: none;
border: 2px solid #3f3f33;
}
span>i {
position: absolute;
top: 0%;
bottom: 0%;
right: 10px;
display: flex;
align-self: center;
color: black;
}
button {
padding: 10px 20px;
margin: 10px;
border-radius: 20px;
outline: none;
border: none;
background-color: white;
color: black;
cursor: pointer;
}
@media screen and (max-width:764px) {
main {
width: 90%;
}
}