-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle2.css
More file actions
66 lines (66 loc) · 1.31 KB
/
Style2.css
File metadata and controls
66 lines (66 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
*{
margin: 0;
padding: 0;
font-family: sans-serif;
color: darkred;
}
.back{
height: 100%;
width: 100%;
background-image: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.2)),url(banner.jpg);
opacity: 0.8;
background-position: center;
background-size: cover;
position: absolute;
}
.form-box{
width: 550px;
height: 400px;
position: relative;
margin: 6% auto;
padding: 5px;
border-radius: 10px;
top: 20%;
background: azure;
opacity: 1;
overflow: hidden;
}
.form-box h2{
position: relative;
left: 15%;
top: 5%;
color: black;
text-transform: uppercase;
font-family: "DejaVu Math TeX Gyre";
font-weight: 600;
}
.input-field{
width: 100%;
padding: 10px 0;
text-align: center;
margin: 20px 0;
top: 25%;
border-top: 2px solid brown;
font-size: 22px;
border-bottom: 2px solid #999999;
border-radius: 12px;
outline: none;
background: transparent;
}
.submit-btn{
width: 35%;
padding: 10px 30px;
cursor: pointer;
display: block;
margin: auto;
background: linear-gradient(to right,hotpink,white);
border: 0;
font-size: 24px;
color: crimson;
outline: none;
border-radius: 30px;
box-shadow: 0 0 20px 9px #ff61241f;
}
.check-box{
margin: 10px 8px 10px 0;
}