forked from MuditxSahni/itssukant.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseCUREME.css
More file actions
82 lines (82 loc) · 1.46 KB
/
seCUREME.css
File metadata and controls
82 lines (82 loc) · 1.46 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
* {
margin: 0;
padding: 0;
font-family: "Times New Roman";
box-sizing: border-box;
}
body {
height: 100vh;
display: grid;
place-items: center;
}
.logo {
height: 400px;
width: 450px;
}
.home {
width: 250px;
height: 75px;
position: absolute;
margin-left: -700px;
margin-top: -250px;
border-radius: 15px;
border-color: red;
}
.home:hover {
transform: scale(1.25);
color: white;
background-color: tomato;
}
.btn {
width: 250px;
height: 75px;
position: absolute;
border-radius: 15px;
margin-top: -250px;
margin-left: 450px;
box-shadow: rgba(0, 0, 0, 0.5);
cursor: pointer;
border-color: red;
}
.btn:hover {
transform: scale(1.25);
color: white;
background-color: tomato;
}
table {
width: 1250px;
box-shadow: -1px 12px 12px -6px rgba(0, 0, 0, 0.5);
}
table,
td,
th {
padding: 20px;
border: 1px solid lightgray;
border-collapse: collapse;
text-align: center;
cursor: pointer;
}
td {
font-size: 18px;
}
th {
background-color: red;
color: white;
}
tr:nth-child(odd) {
background-color: rgba(255, 177, 177, 0.5);
}
tr:nth-child(odd):hover {
background-color: rgb(255, 43, 43);
color: white;
transform: scale(1.25);
transition: transform 300ms ease-in;
}
tr:nth-child(even) {
background-color: #ededed;
}
tr:nth-child(even):hover {
background-color: lightgray;
transform: scale(1.25);
transition: transform 300ms ease-in;
}