-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomerSignup.css
118 lines (101 loc) · 2.3 KB
/
customerSignup.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
body{
background: #EDF2F5;
color: #130933;
font-family: Raleway;
}
.navbar-default{
background: #28237A;
border-color: #878ea3;
}
.navbar-default .navbar-nav>li>a{
margin-top: 20px;
color: white;
}
.navbar-default .navbar-brand{
margin-top: 20px;
color: white;
}
.navbar-default .navbar-nav>li>a:hover {
background-color: white;
color: grey;
}
.navbar-default .navbar-brand:hover{
background-color: white;
color: grey;
}
.dropdown {
position: relative;
margin-top: 30px;
display: inline-block;
}
.dropdown a{
color: white;
}
.dropdown-content {
display: none;
right: 0;
background: #B5B5B5;
border: 1px solid rgba(100,100,100,0.4);
border-radius: 0 0 2px 2px;
box-shadow: 0 3px 8px rgba(0,0,0,0.25);
color: #1d2129;
overflow: visible;
position: absolute;
top: 38px;
width: 250px;
text-align: center;
z-index: 1;
}
.dropdown:hover .dropdown-content {display: block;}
.dropdown-content .new{
color: blue;
}
.container{
text-align: center;
}
.form{
text-align: left;
border: 2px solid #EDF2F5;
padding-top: 20px;
}
hr{
border-color: grey;
background-color: grey;
color: grey;
}
.go{
padding-top: 50px;
padding-bottom: 20px;
text-align: center;
}
.jumbotron{
box-shadow: 0px, 8px, 16px, 24px rgba(0,0,0,0.5);
background: #B7E6E8;
color: #161140;
}
#myBtn {
display: none; /* Hidden by default */
position: fixed; /* Fixed/sticky position */
bottom: 20px; /* Place the button at the bottom of the page */
right: 30px; /* Place the button 30px from the right */
z-index: 99; /* Make sure it does not overlap */
border: none; /* Remove borders */
outline: none; /* Remove outline */
background-color: #22804F; /* Set a background color */
color: white; /* Text color */
cursor: pointer; /* Add a mouse pointer on hover */
padding: 10px; /* Some padding */
border-radius: 10px; /* Rounded corners */
font-size: 18px; /* Increase font size */
}
#myBtn:hover {
background-color: #555; /* Add a dark-grey background on hover */
}
.footer {
left: 0;
bottom: 0;
width: 100%;
background-color: #28237A;
color: white;
text-align: center;
}