39 lines
922 B
SCSS
39 lines
922 B
SCSS
@use "sass:color" as c;
|
|
|
|
@use "general" as *;
|
|
@use "fonts" as *;
|
|
@use "main-palette" as mp;
|
|
|
|
#fof {
|
|
border: none;
|
|
.fof {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
h1 {
|
|
margin: 10px 10px 0px 10px;
|
|
font-family: $ll;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
}
|
|
img {
|
|
max-width: fit-content;
|
|
display: block;
|
|
margin: auto;
|
|
}
|
|
.fof-foot {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
width: 780px;
|
|
margin: 0px auto;
|
|
p {
|
|
font-family:
|
|
$ll, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
font-size: 1.2em;
|
|
}
|
|
}
|
|
}
|
|
}
|