Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions documentation/src/components/Landing/molecules/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,19 @@ import styles from './styles.module.css'
export const Header: FC = () => (
<div className={styles.container}>
<div className={styles.text}>
<h1>
SGroups - Host Based NGFW
</h1>
<h1>SGroups - Host Based NGFW</h1>
<h2>
<span>Будущее безопасной сети</span>
<span>Будущее безопасной сети</span>
</h2>

<p>
Создавайте защищенные сети в вашей организации за пару минут, используя весь функционал <span>sgroups</span> для сетевой микросегментации.
Создавайте защищенные сети в вашей организации за пару минут, используя весь функционал <span>sgroups</span> для
сетевой микросегментации.
</p>
<a href="/sgroups/info/introduction/">
<button className={styles.button} type="button">
Начать
</button>
<div className={styles.buttonHolder}>
<button type="button">Начать</button>
</div>
</a>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,14 @@
padding: 15px;
text-align: justify;
background: rgba(0, 0, 0, 0.7);
}

span {
font-weight: 300;
}
p span {
font-weight: bold;
}
.text span {
font-weight: 300;
}

.text p span {
font-weight: bold;
}

@media (min-width: 997px) {
Expand All @@ -43,7 +44,7 @@
}
}

.button {
.buttonHolder button {
display: inline-block;
min-height: 50px;
margin-top: 0.5rem;
Expand All @@ -55,13 +56,10 @@
border-width: 0;
border-radius: 0.1rem;
cursor: pointer;
transition:
color 125ms,
background-color 125ms,
border-color 125ms;
transition: all 125ms;
}

.button:hover {
.buttonHolder button:hover {
color: #fff;
background-color: var(--ifm-color-primary);
}