76 lines
1.1 KiB
CSS
76 lines
1.1 KiB
CSS
/* ================= GLOBAL ================= */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: "Segoe UI", sans-serif;
|
|
}
|
|
|
|
body {
|
|
background: #f4f7f6;
|
|
display: flex;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none !important;
|
|
color: #007bff;
|
|
}
|
|
|
|
/* ================= MAIN CONTENT ================= */
|
|
.main {
|
|
margin-left: 20px;
|
|
padding: 8px;
|
|
width: calc(100% - 50px);
|
|
margin-top: 50px;
|
|
position: relative;
|
|
z-index: 5;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.container {
|
|
background: white;
|
|
padding: 30px;
|
|
width: 95%;
|
|
margin: auto;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
h2 {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
color: #007bff;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
margin-top: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
ul li {
|
|
margin: 14px 0;
|
|
}
|
|
|
|
ul li a {
|
|
color: #007bff;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
transition: 0.2s;
|
|
}
|
|
|
|
ul li a:hover {
|
|
color: #0056b3;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
|
|
/* ================= RESPONSIVE ================= */
|
|
@media (max-width: 768px) {
|
|
.main {
|
|
margin-left: 0;
|
|
width: 100%;
|
|
padding: 20px;
|
|
}
|
|
} |