-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated into section, news and calendar (#321)
- Loading branch information
Showing
21 changed files
with
763 additions
and
211 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,45 @@ | ||
<template> | ||
<div class="row bg-theme center p-medium"> | ||
<div> | ||
<h1 class="title" style="font-size: 4rem;"> | ||
ROBOT<br> | ||
FRAME<br> | ||
WORK<div style="font-size: 2.5rem; transform: translateY(-.5rem); display: inline-block;">🇺🇦</div> | ||
</h1> | ||
</div> | ||
<div class="banner"> | ||
<h1 class="color-black logotype bg-theme"> | ||
<div class="color-white">ROBOT</div> | ||
<div>FRAME</div> | ||
<div class="flex"> | ||
WORK | ||
<robot-icon size="4.6rem" color="black" style="transform: translate(0.5rem, 1rem);" /> | ||
</div> | ||
</h1> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import RobotIcon from './icons/RobotIcon.vue' | ||
export default { | ||
name: 'Banner' | ||
name: 'Banner', | ||
components: { | ||
RobotIcon | ||
} | ||
} | ||
</script> | ||
|
||
<style scoped> | ||
.title::first-line { | ||
color: var(--color-white); | ||
h1 { | ||
width: fit-content; | ||
margin: 0 auto; | ||
max-width: 100%; | ||
} | ||
.banner { | ||
width: 100%; | ||
background-color: var(--color-theme); | ||
} | ||
.logotype { | ||
font-size: 6rem; | ||
padding: 2rem; | ||
display: block; | ||
@media screen and (max-width: 769px) { | ||
display: flex; | ||
flex-wrap: wrap; | ||
font-size: 20vw; | ||
padding: 14.25vw; | ||
} | ||
} | ||
</style> |
Oops, something went wrong.