-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
81 lines (69 loc) · 1.12 KB
/
stylesheet.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
color: gray;
outline: none;
}
html {
background-color:cadetblue;
}
* a {
color: cadetblue;
text-decoration: none;
font-style: none;
}
* a:hover {
text-decoration: underline;
}
input {
padding: 5px;
margin: 0px 0px 0px 15px;
font-size: medium;
width: 220px;
border: 2px solid darkgray;
border-radius: 3px;
}
.emailInput,
.passwordInput {
width: 93%;
margin-top: 21px;
}
#termsPolicy {
width: 25px;
}
.container {
background-color: white;
border-radius: 7px;
box-shadow: 0px 0px 10px gray;
width: 38%;
height: 540px;
margin: auto;
margin-top: 7%;
padding: 10px 0px 30px 0px;
}
.title {
line-height: 50px;
text-align: center;
margin: 21px;
}
.createAccount {
text-align: center;
}
.submitButton {
margin-left: 15px;
background-color:#249f5b;
color: white;
border: none;
border-radius: 4px;
padding: 15px;
width: 93%;
font-size: large;
}
.signIn {
text-align: center;
color: white;
}
.signIn a {
color: white;
}