mirror of
https://github.com/avinal/avinal.github.io.git
synced 2026-07-03 23:30:09 +05:30
41 lines
582 B
CSS
41 lines
582 B
CSS
#main > h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
#main > .content {
|
|
padding-top: 1rem;
|
|
}
|
|
|
|
#main > .warning {
|
|
background-color: brown;
|
|
color: white;
|
|
font-size: 1.1rem;
|
|
margin: 2rem 0;
|
|
padding: 1rem 0;
|
|
text-align: center;
|
|
}
|
|
|
|
#main .toc {
|
|
background-color: #EEEEEE;
|
|
border: black 1px dashed;
|
|
display: inline-block;
|
|
margin: 1rem;
|
|
padding: .5rem 1rem;
|
|
}
|
|
|
|
#main .toc a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
#main .toc li > ul {
|
|
margin-left: 1.5rem;
|
|
}
|
|
|
|
#main .toc ul {
|
|
list-style: none;
|
|
}
|
|
|
|
#main :target {
|
|
background-color: azure;
|
|
}
|