-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
72 lines (62 loc) · 1.24 KB
/
style.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
body{
background-image: url(bg.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
table{
width: 80%;
margin: 40px auto;
background: rgb(208, 213, 216);
}
table.list{
text-align: center;
width: 100%;
}
td{
border: 1px solid rgb(204, 200, 200);
text-align: left;
padding: 8px 15px;
}
tr:nth-child(even), table.list thread> tr{
background-color: rgb(204, 200, 200);
}
input[type="text"], input[type="number"]{
width: 91%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid rgb(165, 161, 161);
border-radius: 4px;
}
input[type="submit"], input[type="reset"]{
background: #eee;
padding: 6px 12px;
margin: 15px 0 10px;
display: inline-block;
border: none;
border-radius: 30px;
font-size: 1rem;
cursor: pointer;
outline: none;
}
input[type="submit"]:hover{
background: #7cbcf1;
}
input[type="reset"]:hover{
background: #7cbcf1;
}
button{
background: #eee;
padding: 6px 12px;
margin: 15px 0 10px;
display: inline-block;
border: none;
border-radius: 30px;
font-size: 1rem;
cursor: pointer;
outline: none;
}
button:hover{
background: #7cbcf1;
}