-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (76 loc) · 1.51 KB
/
style.css
File metadata and controls
83 lines (76 loc) · 1.51 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
82
83
body{
display: grid;
place-items: center;
height: 100vh;
}
html{
background-image: url("assets/neom-gVDUuJaG_wM-unsplash.jpg") ;
background-size: cover;
background-repeat: no-repeat ;
}
input{
padding: 8px 14px;
border-radius: 4px;
outline: none;
border: 2px solid #E8CCFF;
display: block;
font-size: 20px;
font-weight: 300;
padding-bottom: 10px;
background-color: rgba(255, 255, 255, 0.07);
margin: 5px;
}
.container{
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
background-color: rgba(255, 255, 255, 0.13);
backdrop-filter: blur(10px);
border: 2px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 0 40px rgba(8,7,16,0.16);
opacity: 0.8;
padding: 50px 35px;
z-index: 4;
}
::placeholder{
color:#e5e5e5
}
.img{
margin: 10px;
height: 150px;
padding: 20px;
}
button{
background: #971AFF;
padding: 10px 15px;
border: 1px solid #971AFF;
border-radius: 5px;
color: white;
display: block;
margin: 15px auto;
cursor: pointer;
font-size: medium;
}
button:hover{
opacity: .8;
}
.btn{
padding: 10px;;
}
.background .shape {
height: 200px;
width: 200px;
position: absolute;
border-radius: 50%;
}
.shape:first-child {
background: linear-gradient(#1845ad, #23a2f6);
left: -40px;
top: -40px;
}
.shape:last-child {
background: linear-gradient(to right, #ff512f, #f09819);
right: -30px;
bottom: -80px;
}