-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyleEs.css
More file actions
78 lines (68 loc) · 1.2 KB
/
styleEs.css
File metadata and controls
78 lines (68 loc) · 1.2 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
* {
padding: 0;
border: 0;
box-sizing: border-box;
}
html {
width: 100vw;
height: 100vh;
font-family: Arial, Helvetica, sans-serif;
background: linear-gradient(#fff, #a9a8a8);
background-repeat: no-repeat;
overflow: hidden;
}
header{
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
background-color: #12b304;
border-radius: 0px 0px 10px 10px;
height: 65px;
margin-bottom: 180px;
color: #fff;
}
a {
color: white;
font-size: 30px;
text-decoration: none;
padding-left: 20px;
}
#sec {
display: flex;
align-items: center;
justify-content: center;
padding-left: 20px;
}
.Emaill {
display: grid;
padding: 10px;
}
.label{
text-align: justify;
}
.input {
width: 300px;
height: 30px;
border-radius: 10px;
}
#btnE {
background-color: #13b304a9;
color: #fff;
width: 300px;
height: 30px;
border-radius: 10px;
}
#btnE:hover {
background-color: #12b304;
cursor: pointer;
}
footer {
width: 99vw;
height: 65px;
background-color: #12b304;
border-radius: 10px 10px;
height: 65px;
position: absolute;
bottom: 0;
}