forked from techvraksh/hacktoberfest-indore-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
52 lines (43 loc) · 734 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
41
42
43
44
45
46
47
48
49
50
51
52
@keyframes my-animation{
to{
box-shadow: rgba(137, 43, 226, 0.409) 0px 1px 3px 1px, blueviolet 0px 1px 2px 0px;
}
}
body {
font-family: "Segoe UI", sans-serif;
}
h1, h2, p {
text-align: center;
}
h1 {
margin-top: 50px;
margin-bottom: -10px;
font-size: 45px;
color: #323333;
}
h2 {
color: #323333;
border-radius: 10px;
box-shadow: blueviolet 0px 1px 2px 0px, rgba(137, 43, 226, 0.409) 0px 1px 3px 1px;
padding: 10px 20px;
width: fit-content;
margin: auto;
animation: my-animation 2s infinite;
}
footer > p {
font-size: 13px;
margin-top: -25px;
}
a {
color: #6b7280;
}
#table {
margin: 50px 50px;
}
.table-body {
color: #323333;
}
.header{
display: flex;
justify-content: center;
}