-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimple-Form.css
More file actions
77 lines (62 loc) · 1.47 KB
/
Copy pathSimple-Form.css
File metadata and controls
77 lines (62 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
body{
margin: 10px;
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(135deg, #8EC5FC, #E0C3FC);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.text{
margin-top: 10x;
margin-bottom: 10px;
color: aqua;
}
.form{
justify-content: center;
text-align: center;
border: none;
border-radius: 50px;
padding-bottom: 90px;
padding-top: 65px;
padding-left: 90px;
padding-right: 90px;
background-color: white;
background-image: url(vertical.jpeg);
background-repeat: no-repeat;
background-size: cover;
box-shadow: 5px 20px 50px;
}
.button{
margin-top: 30px;
height: 50px;
width: 300px;
font-size: 18px;
font-weight: bold;
color: black;
background-color: rgba(47, 255, 248, 0.7);
border: none;
border-radius: 40px;
cursor: pointer;
}
.button:hover {
background-color: rgb(47, 255, 248, 0.9);
box-shadow: 0 0 20px rgb(255, 247, 0);
}
.A {
margin-top: 40px;
}
.a, .b, .c{
margin-bottom: 28px;
height: 30px;
border-radius: 25px;
border: none;
padding-left: 35px;
padding-right: 40px;
width: 200px;
}
.a:hover, .b:hover, .c:hover {
cursor: pointer;
box-shadow: 0 0 20px rgb(255, 247, 0);
}