-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.css
123 lines (105 loc) · 1.99 KB
/
home.css
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
* {
box-sizing: border-box;
}
.row {
height: 100%;
width: auto;
margin: 0;
}
body {
background-image: url(home_bk_white.png);
background-repeat: no-repeat;
background-size: auto;
margin: 0;
padding: 0;
width:100%;
}
.titleSection {
position: relative;
height: 100vh;
padding: 25px;
font-size: 14px;
color: #252525;
display: flex;
justify-content: center;
align-items: center;
}
.titleSection header {
color: #282828;
font-size: 75px;
font-weight: 800;
margin-bottom: 30px;
justify-self: center;
}
.titleSection p {
display: flex;
margin-top: 20%;
bottom: 5%;
}
.loginSection {
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.myForm {
margin: 5px;
padding: 5px;
border-radius: 20px;
background: rgba(25,25,25,0.04);
box-shadow: -6px 4px 28px 4px rgba(0,0,0,0.75);
height: auto;
width: 75%;
}
.myForm header {
color: #282828;
font-size: 33px;
font-weight: 800;
margin: 20px;
font-family: 'Montserrat',sans-serif;
}
.myForm .myInput {
margin: 5px;
margin-bottom: 15px;
color: black;
border-radius: 30px;
height: 40px;
width: 80%;
text-align: center;
border: none;
box-shadow: 0px 10px 49px -14px rgba(0,0,0,0.4);
}
.myForm .myInput:focus {
outline: none;
}
.myForm .SubmitBtn {
margin: 5px;
margin-bottom: 20px;
font-size: 16px;
background-color: lightblue;
border-radius: 25px;
width: 150px;
height: 40px;
border: none;
}
.myForm .SubmitBtn:hover {
outline: none;
margin: 5px;
margin-bottom: 20px;
background-color: blue;
color: #fff;
border-radius: 25px;
width: 150px;
height: 40px;
border: none;
box-shadow: 0px 10px 49px -14px rgba(0,0,0,0.5);
}
.myForm a {
display: flex;
justify-content: center;
margin-bottom: 10px;
}
.myForm h5 {
color: black;
display: flex;
}