-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheventspages.css
More file actions
110 lines (95 loc) · 1.94 KB
/
Copy patheventspages.css
File metadata and controls
110 lines (95 loc) · 1.94 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
body {
font-family: 'Poppins', sans-serif;
background-color: #f2f2f2;
margin: 0;
padding: 0;
}
.container {
width: 72.5%;
margin: 50px auto;
background-color: #fff;
padding: 20px;
border-radius: 30px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
margin-left: 5%;
margin-right: 20%;
}
h2 {
text-align: center;
}
table {
width: 100%;
border-collapse: collapse;
}
table, th, td {
border: 1px solid #ccc;
}
th, td {
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
tr:nth-child(even) {
background-color: rgb(220, 220, 220);
}
.btn-submit, .btn-delete {
background-color: #000080;
color: #fff;
padding: 8px 16px;
border: none;
border-radius: 4px;
cursor: pointer;
margin-right: 10px;
text-decoration: none;
}
.btn-submit:hover, .btn-delete:hover {
background-color: #1976D2;
}
.btn-delete {
background-color: red;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
padding: 8px 16px;
text-decoration: none;
margin-right: 10px;
}
.exclamation-mark {
color: red;
cursor: pointer;
position: relative;
}
.exclamation-mark::after {
content: attr(title);
position: absolute;
background-color: #fff;
border: 1px solid #ccc;
padding: 5px;
border-radius: 5px;
top: -5px;
left: 105%;
white-space: nowrap;
display: none;
z-index: 10;
}
.exclamation-mark:hover::after {
display: block;
}
.ribbon {
display: grid;
place-items: center;
width: 45px;
font-size: 11px;
padding: 4px;
position: absolute;
right: -15px;
top: -10px;
border-radius: 15px;
transform: rotate(20deg); /*slants ribbon*/
background-color: #ff9800;
color: white;
z-index: 10; /*overlaps over button*/
}