-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmstyle.css
More file actions
65 lines (56 loc) · 1.38 KB
/
mstyle.css
File metadata and controls
65 lines (56 loc) · 1.38 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
/*Styles for the background container*/
.background-container {
/*Set positions for the background*/
position: absolute;
top: 0;
left: 0;
/*Set the width and height of the background*/
width: 100%;
height: 100%;
/*Add background image */
background-image: url("https://startupbiz.co.zw/wp-content/uploads/2023/05/7-Construction-Business-Ideas-For-Zimbabwe.jpg");
background-size: cover;
background-repeat: no-repeat;
/*Add blur effect*/
filter: blur(5px);
z-index: -1;
}
/*Styles for buttons*/
button{
background-color: blanchedalmond;
margin: 10px;
width: 100px;
height: 40px;
font-size: 16px;
font-weight: bold;
font-style: oblique;
border-radius: 5px;
border-color: burlywood;
color: red;
}
/*Styles for table*/
table {
border-collapse: collapse;
width: 100%;
color: black;
}
/*Styles for table headers and data cells*/
th, td {
padding: 8px 12px;
text-align: left;
color: black;
}
/*Styles for header cells*/
th {
background-color:whitesmoke;
font-weight: bold;
}
/*Styles for even rows in the table*/
tr:nth-child(even) {
background-color:whitesmoke;
}
/*Styles for button hover state*/
.btn:hover {
background-color: burlywood;
color: #000;
}