-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
40 lines (34 loc) · 825 Bytes
/
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
table {
border-collapse: collapse;
width: 100%;
}
th, td {
text-align: left;
padding: 8px;
}
th {
background-color: #333;
color: #fff;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
a {
color: #007bff;
}
.button {
display: inline-block;
background-color: #4CAF50; /* Set the background color */
border: none; /* Remove the border */
color: white; /* Set the text color */
padding: 5px 10px; /* Set the padding */
text-align: center; /* Center the text */
text-decoration: none; /* Remove underline */
font-size: 13px; /* Set font size */
cursor: pointer; /* Add cursor on hover */
border-radius: 5px; /* Round the corners */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow */
}
.button:hover {
background-color: #3e8e41; /* Darken the background color on hover */
}