83 lines
1.1 KiB
CSS
83 lines
1.1 KiB
CSS
|
@import url("https://fonts.googleapis.com/css2?family=Raleway&display=swap");
|
||
|
|
||
|
::-webkit-scrollbar {
|
||
|
width: 10px;
|
||
|
height: 10px;
|
||
|
}
|
||
|
::-webkit-scrollbar-thumb {
|
||
|
background: #a3a3a3;
|
||
|
border-radius: 0px;
|
||
|
}
|
||
|
::-webkit-scrollbar-thumb:hover {
|
||
|
background: #a3a3a3;
|
||
|
}
|
||
|
::-webkit-scrollbar-track {
|
||
|
background: #ffffff;
|
||
|
border-radius: 0px;
|
||
|
box-shadow: inset 7px 10px 12px #f0f0f0;
|
||
|
}
|
||
|
|
||
|
* {
|
||
|
box-sizing: border-box;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: "Raleway", sans-serif;
|
||
|
}
|
||
|
|
||
|
ul {
|
||
|
text-decoration: none;
|
||
|
list-style: disc;
|
||
|
margin-left: 2em;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: #333;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
color: #777;
|
||
|
}
|
||
|
|
||
|
header h1 {
|
||
|
text-align: center;
|
||
|
margin: 2rem;
|
||
|
}
|
||
|
|
||
|
main {
|
||
|
max-width: 760px;
|
||
|
margin: auto;
|
||
|
text-align: justify;
|
||
|
padding: 0.3rem 0.7rem;
|
||
|
}
|
||
|
|
||
|
main p,
|
||
|
main h3,
|
||
|
main h2 {
|
||
|
margin: 0.3rem 0rem;
|
||
|
}
|
||
|
|
||
|
main h2 {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
#fondamenti-pac {
|
||
|
font-size: 1.7rem;
|
||
|
}
|
||
|
|
||
|
.no-dec {
|
||
|
text-decoration: none;
|
||
|
list-style: none;
|
||
|
margin-left: 1rem;
|
||
|
}
|
||
|
|
||
|
footer {
|
||
|
max-width: 760px;
|
||
|
margin: auto;
|
||
|
margin-bottom: 1rem;
|
||
|
padding-left: .7rem;
|
||
|
}
|