-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (82 loc) · 1.24 KB
/
style.css
File metadata and controls
82 lines (82 loc) · 1.24 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
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,700&display=swap");
* {
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif;
font-style: normal;
}
nav {
background-color: rgb(230, 110, 110);
padding: 9px 3px;
display: flex;
justify-content: space-between;
}
.logo {
margin: 0 25px;
font-weight: 1000;
font-size: 20px;
cursor: pointer;
}
ul {
display: flex;
margin: 0 25px;
align-items: center;
}
ul > li {
list-style: none;
margin: 0 13px;
font-size: 17px;
cursor: pointer;
}
ul > li:hover {
color: whitesmoke;
}
table {
border: 2px solid black;
}
.container {
max-width: 80vw;
margin: 23px auto;
}
h1,
h2,
h3 {
margin: 23px 0;
}
.btn {
padding: 7px 14px;
background: black;
color: white;
font-weight: 900;
border: 1px solid grey;
border-radius: 5px;
margin: 8px 0;
cursor: pointer;
}
table,
td,
tr,
th {
border: 2px solid black;
border-collapse: collapse;
padding: 5px 12px;
}
.delbtn {
padding: 5px 5px;
background: black;
color: white;
font-weight: 900;
border: 1px solid grey;
border-radius: 5px;
margin: 8px 0;
cursor: pointer;
}
img{
cursor: pointer;
height: 25px;
width: 22px;
margin: 0px 7px;
}
#alert{
display: none;
}