forked from katezach/FinalProjectPSPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.css
111 lines (111 loc) · 2.07 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
body, html {
height: 100%;
margin: 0;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
*{
box-sizing: border-box;
}
.bg-img {
/* The image used */
background-image: url("media/signinphoto.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 100%;
}
/*Create the box*/
#signup {
width: 100%;
height: 100vh;
overflow: scroll;
}
.signup-wrapper {
margin: 0 auto;
position: relative;
max-width: 800px;
}
/* Add styles to the form container */
.form-horizontal {
float: left;
margin-top: 60px;
margin-left: 60px;
max-width: 350px;
padding: 20px;
background-color: rgb(130, 209, 141, 0.8);
}
/* Full-width input fields */
input[type=text], input[type=password] {
width: 100%;
padding: 12px;
margin:0 0 15px 0;
border: none;
background: #f1f1f1;
font-size: 13px;
}
input[type=text]:focus, input[type=password]:focus {
background-color: #f1f1f1;
outline: none;
}
/*overwrites*/
label{
margin-bottom: 0 !important;
color: black ;
}
h2{
margin-top: 20px !important;
margin-bottom: 20px !important;
color: black;
}
h6{
padding-top: 15px;
font-size: 16px ;
font-weight: bold ;
color: black ;
}
a{
color: black !important;
text-decoration: underline !important;
}
a:hover{
color: rgb(44, 44, 44) !important;
}
/* Set a style for the submit button */
button {
background-color: #16ac1b;
color: white;
padding: 14px 18px;
border: none;
cursor: pointer;
width: 100%;
opacity: 0.8;
}
button a{
text-decoration: inherit;
color: white;
}
button:hover {
opacity: 1;
}
button:hover a{
text-decoration: none;
color: inherit;
}
/*Media queries*/
@media (max-width:400px){
.form-horizontal{
margin-left: 0px;
}
}
@media (max-width:540px){
.form-horizontal{
margin-top: 10px;
}
}
@media (min-width:2000px){
.form-horizontal{
margin-top: 200px;
max-width: 500px;
margin-left: 100px;
}
}