-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (99 loc) · 1.68 KB
/
style.css
File metadata and controls
117 lines (99 loc) · 1.68 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
}
h2 {
margin-top: 20px;
}
form {
background-color: #fff;
padding: 20px;
border: 1px solid #ddd;
border-radius: 5px;
margin-top: 20px;
width: 250px;
}
label {
display: block;
margin: 10px 0 5px;
}
input {
padding: 8px;
margin-bottom: 10px;
border: 1px solid #ddd;
border-radius: 5px;
width: 230px;
}
button, input[type="submit"] {
background-color: #5cb85c;
color: #fff;
padding: 10px 15px;
border: none;
border-radius: 5px;
cursor: pointer;
width: 100%;
margin-top: 10px;
}
button:hover, input[type="submit"]:hover {
background-color: #4cae4c;
}
.action_btn {
padding: 5.5px 7px 5px 7px;
background-color: grey;
color: white;
-webkit-filter: grayscale(0);
filter: none;
border-radius: 0.4vw;
}
#edit_btn{
background-color: #3c8cf4;
}
#del_btn{
background-color: #e02619;
}
.action_btn:hover {
filter: black;
-webkit-filter: grayscale(0.3);
filter: grayscale(0.3);
text-decoration: none;
}
table {
margin-top: 20px;
border-collapse: collapse;
width: 80%;
}
table, th, td {
border: 1px solid #ddd;
}
th, td {
padding: 10px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
p.error {
color: #e02619;
height: 10px;
margin: 0;
}
p.alert {
color: #4cae4c;
padding: 10px;
margin: 0;
height: 10px;
position: fixed;
top: 260px;
}