-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
64 lines (62 loc) · 1002 Bytes
/
index.css
File metadata and controls
64 lines (62 loc) · 1002 Bytes
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
/* Styles go here */
.form_part
{
float:left;
padding:5px;
width: 40%;
padding: 10px;
display: inline;
}
input[type=text], input[type=password],input[type=email]{
width:60%;
border-radius: 5px;
border: 2px solid;
padding: 10px;
transition: 0.5s;
}
input{
margin: 10px;
}
th {
background-color: black;
color: white;
}
td,th{
border: 1px solid grey;
text-align: left;
padding: 7px;
}
input[type=text]:focus,input[type=password]:focus,input[type=email]:focus {
border: 3px solid #555;
}
#submit, #reset{
width: 40%;
margin-left:25px;
padding: 10px;
border-radius: 6px;
color: black;
border: none;
cursor: pointer;
background-color: #4CAF50;
}
#form_div {
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
}
#table_div{
float:left;
padding: 10px;
margin-left: 20px;
}
table{
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
.invalid{
border: 3px solid red ;
}
.error{
color: red;
}