forked from colossalboss/rem-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.css
executable file
·123 lines (105 loc) · 1.87 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
body {
background-color: #001F3F;
margin: auto 0;
}
.mainnav {
display: flex;
list-style: none;
margin: 0;
}
@media only screen and (max-width: 600px) {
.mainnav {
font-size: 0.5em;
padding: 0;
}
}
li {
padding: 20px;
}
.link {
color: white;
text-decoration: none;
}
.increasefont {
font-size: 35px;
font-family: 'Pacifico', cursive;
}
.push {
margin-left: auto;
}
.pushleft {
padding-right: 50px;
}
.sourcefont {
font-family: 'Source Sans Pro', sans-serif;
font-size: 17px;
line-height: 25px;
}
.signup-page {
width: 500px;
margin: auto;
}
.hiredev {
font-family: 'Roboto', sans-serif;
}
.rmvline {
text-decoration: none;
color: rgb(46, 172, 204);
}
.form {
position: relative;
z-index: 1;
background: white;
border-radius: 5px;
max-width: 360px;
margin: 0 auto 100px;
padding: 45px;
text-align: center;
}
.center {
color: white;
text-align: center;
font-family: 'Source Sans Pro', sans-serif;
font-style: normal;
font-weight: bold;
font-size: 35px;
line-height: 20px;
}
input {
font-family: Verdana, Geneva, Tahoma, sans-serif;
outline: 1;
background: #f2f2f2;
width: 100%;
border: 1px solid black;
border-radius: 5px;
margin: 0 0 15px;
padding: 15px;
box-sizing: border-box;
font-size: 14px;
}
button {
font-family: Verdana, Geneva, Tahoma, sans-serif;
outline: 0;
background: #4caf54;
width: 150px;
height: 40px;
;
border: 0%;
border-radius: 5px;
text-align: center;
float: right;
color: #ffffff;
font-size: 14px;
cursor: pointer;
}
.message {
padding-top: 50px;
margin: 15px 0 0;
color: black;
font-size: 15px;
font-family: 'Roboto', sans-serif;
}
.login {
color: rgb(46, 172, 204);
text-decoration: none;
}