51 lines
637 B
CSS
51 lines
637 B
CSS
:root {
|
|
--orange: #dd6b02;
|
|
--blue: #007abf;
|
|
--green: #65b32e;
|
|
}
|
|
|
|
.mentor-text-orange {
|
|
color: var(--orange);
|
|
}
|
|
|
|
.mentor-text-blue {
|
|
color: var(--blue);
|
|
}
|
|
|
|
.mentor-text-green {
|
|
color: var(--green);
|
|
}
|
|
|
|
.mentor-bg-orange {
|
|
background-color: var(--orange);
|
|
}
|
|
|
|
.mentor-bg-blue {
|
|
background-color: var(--blue);
|
|
}
|
|
|
|
.mentor-bg-green {
|
|
background-color: var(--green);
|
|
}
|
|
|
|
a {
|
|
color: var(--blue) !important;
|
|
}
|
|
|
|
p {
|
|
text-align: justify;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
nav {
|
|
font-size: 1.2em;
|
|
background-color: #007abf16;
|
|
}
|
|
|
|
footer {
|
|
background-color: #65b32e16;
|
|
} |