Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
RishiRecon
GitHub Repository: RishiRecon/exploits
Path: blob/main/css/image.css
27877 views
1
.center {
2
display: block;
3
margin-left: auto;
4
margin-right: auto;
5
}
6
7
a:link {
8
color: rgb(143, 206, 254);
9
background-color: transparent;
10
text-decoration: underline;
11
}
12
13
a:visited {
14
color: pink;
15
background-color: transparent;
16
text-decoration: none;
17
}
18
19
a:hover {
20
color: rgb(184, 209, 229);
21
background-color: transparent;
22
text-decoration: underline;
23
}
24
25
a:active {
26
color: yellow;
27
background-color: transparent;
28
text-decoration: underline;
29
}
30