-
Notifications
You must be signed in to change notification settings - Fork 0
/
analogsea.css
102 lines (84 loc) · 1.47 KB
/
analogsea.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
* {
box-sizing: border-box;
}
body {
margin: 0;
}
.container {
background: cornflowerblue;
width: 100%;
height: 1070px;
text-align: center;
font-family: Verdana;
}
.logo {
height: 75px;
padding: 20px 0;
}
.signup_form {
width: 400px;
height: 450px;
background: white;
margin-top: -22px;
margin-left: auto;
margin-right: auto;
border-radius: 5px;
}
.signup_form h1 {
font-weight: 300;
padding-top: 40px;
color: darkgreen;
font-size: 30px;
}
.signup_form section {
padding: 0 40px;
text-align: left;
}
.signup_form label {
display: block;
padding: 15px 0;
}
.signup_form input {
padding: 15px;
font-size: 16px;
border: 2px solid lightgray;
width: 320px;
height: 55px;
border-radius: 5px;
}
.signup_form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
color: gray;
}
.signup_form input::-moz-placeholder { /* Firefox 19+ */
color: gray;
}
.signup_form input:-ms-input-placeholder { /* IE 10+ */
color: gray;
}
.signup_form input:-moz-placeholder { /* Firefox 18- */
color: gray;
}
.signup_form button {
background: burlywood;
color: white;
height: 55px;
width: 320px;
margin-top: 15px;
font-size: 22px;
border: 2px solid burlywood;
border-radius: 5px;
}
.signup_form button:hover {
background: green;
border: 2px solid green;
}
.signup_form a {
display: block;
padding: 10px;
font-size: 12px;
}
.have_account, .have_account a {
color: white;
font-weight: bold;
font-size: 14px;
}