-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.css
157 lines (139 loc) · 2.78 KB
/
signup.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
nav
{
margin:0px;
background-color: black;
font-size: 36px;
color: white;
object-fit: cover;
overflow: hidden;
}
/* Dropdown container - needed to position the dropdown content */
.dropdown {
float: right;
overflow: hidden;
margin-right: 250px;
margin-top: 20px;
}
/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
font-size: 17px;
border: none;
outline: none;
color: white;
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
margin: 0;
}
/* Style the dropdown content (hidden by default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
/* Style the links inside the dropdown */
.dropdown-content a {
float: none;
color: black;
text-decoration: none;
display: block;
text-align: left;
font-size: 26px;
}
.dropbtn:hover
{
background-color: white;
color: black;
}
/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
background-color: black;
color: white;
}
/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
display: block;
}
#background
{
background-image: url("architecture-buildings-city-169647.jpg");
align-content: center;
width: 100%;
height: 100%;
background-size: cover;
object-fit: cover;
background-position: center;
margin:0px;
position:fixed;
top: 0px;
left: 0px;
}
#sign_up_pannel
{
background-color: rgba( 0, 0, 0, .8 );
margin-left: 500px;
margin-right: 500px;
color: white;
border-radius: 25px;
}
#title
{
margin-top: 150px;
text-align: center;
color: white;
font-size: 36px;
}
#userbox
{
height: 35px;
border: none;
width: 250px;
margin-left: 315px;
border-radius: 5px;
}
#user_title
{
margin-top: 75px;
text-align: center;
}
#user_pass
{
text-align: center;
}
#submit
{
border: none;
margin-left: 365px;
margin-top: 20px;
font-size: 16px;
height: 35px;
width: 150px;
margin-right: 100px;
border-radius: 5px;
background-color: lightcoral;
text-align: center;
border-radius: 25px;
margin-bottom: 25px;
color:white;
}
#submit:hover
{
background-color: lightblue;
color: black;
}
#back_btn
{
border: none;
font-size: 16px;
height: 35px;
width: 75px;
border-radius: 5px;
background-color: lightblue;
text-align: center;
border-radius: 25px;
margin-left: 780px;
color:black;
}