-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
70 lines (56 loc) · 1.19 KB
/
main.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
* {
font-family:"Lucida Grande";
}
body{
padding:0px;
margin:0px;
background-color: #d8dfea;
}
.header{
background-color:#3b5998;
color:white;
text-align:center;
top:0px;
width:100%;
padding:5px;
}
form {
width:40%;
padding:20px 30px 20px 130px;
border:3px solid #cbcbcb;
margin:5px auto;
}
.textInput {
margin-top:2px;
height:28px;
border:2px solid #5E6E66;
font-size:16px;
padding:1px;
width:100%;
text-align: center;
}
.error {
color: #FF0000;
}
input[type=text]:focus {
background-color: lightblue;
}
input[type=email]:focus {
background-color: lightblue;
}
input[type=password]:focus {
background-color: lightblue;
}
input[type=password]:focus {
background-color: lightblue;
}
input[type=submit] {
background-color: #3b5998;
border: none;
color: white;
padding: 16px 32px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
width: 100px;
}