-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle.css
More file actions
78 lines (78 loc) · 1.47 KB
/
Copy pathStyle.css
File metadata and controls
78 lines (78 loc) · 1.47 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;
font-family: sans-serif;
}
.back{
height: 100%;
width: 100%;
background: url("cloud.jpeg");
background-position: center;
background-size: cover;
position: absolute;
}
.form-box{
width: 500px;
height: 380px;
position: relative;
margin: 6% auto;
top: 20%;
background: aliceblue;
padding: 5px;
border-radius: 15px;
overflow: hidden;
}
.form-box h2{
position: relative;
left: 8%;
top: 5%;
color: cornflowerblue;
text-transform: uppercase;
font-weight: 600;
}
.input-group{
top: 180px;
padding: 20px 30px;
position: center;
margin-top: 50px;
text-shadow: darkgrey;
width: 300px;
transition: .5s;
}
.input-field{
width: 100%;
padding: 10px 0;
text-align: center;
margin: 5px 0;
border-left: 0;
border-top: 0;
border-right: 0;
font-size: 20px;
border-bottom: 2px solid #999999;
border-radius: 20px;
outline: none;
background: transparent;
}
a.button {
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
text-decoration: none;
color: initial;
border: 0;
background: none;
display: block;
margin: 20px auto;
text-align: center;
border: 2px solid aqua;
padding: 14px 40px;
font-size: 20px;
outline: none;
color: chocolate;
border-radius: 20px;
transition: 0.25s;
cursor: pointer;
}
a.button:hover {
background: aquamarine;
}