-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.css
95 lines (91 loc) · 1.4 KB
/
form.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
.body{
margin: 0px;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
}
.full-container{
margin: 0px;
padding: 0px;
overflow: hidden;
}
.center-container{
position: relative;
width: 80%;
height: 90vh;
margin: auto;
overflow-y: hidden;
}
.formWindow
{
width: 50%;
height: auto;
margin: auto;
padding: 4% 2%;
align-content: center;
top: 10%;
position: relative;
}
.formbg
{
background-image: url("images/travel.jpg");
background-size: cover;
}
#userLoginWindow{
background-color: rgba(0,0,0,0.2);
}
#userRegisterWindow{
background-color: rgba(0,0,0,0.2);
}
.label, .labelInvert
{
font-family: 'Montserrat',sans-serif;
font-size: 14px;
color: white;
}
.formText{
color: #eaeaea;
font-family: 'Montserrat',sans-serif;
font-size: 14px;
text-align: center;
}
p{
padding: 5px;
}
input:not(.yellowBtn){
width: 70%;
height: 5%;
border-radius: 5px;
padding: 5px;
float: right;
}
.userFormInput{
border:0.5px solid white;
background-color: unset;
color: white;
}
.yellowBtn{
width: 90%;
margin: auto;
height: 5%;
border-radius: 5px;
padding: 5px;
background-color: #ffc312;
color: white;
font-family: 'Montserrat',sans-serif;
font-size: 16px;
border:none;
position: relative;
left: 5%;
}
.yellowBtn:hover{
cursor: pointer;
}
.heading{
font-family: 'Montserrat',sans-serif;
font-weight: bolder;
font-size: 30px;
margin: 0;
}
.forgotPasswd{
float: right;
}