generated from Tour-de-App/flask-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Zuzana Kvapilová
authored and
Zuzana Kvapilová
committed
Jan 19, 2024
1 parent
29a8d94
commit d85b9f1
Showing
8 changed files
with
87 additions
and
32 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -7,26 +7,30 @@ | |
<title>Žabantí TdA</title> | ||
</head> | ||
<body> | ||
<div clas="navbar"> | ||
<img src="TeacherDigitalAgency_LOGO_colour-black.svg" width="100"> | ||
<div class="navbar"> | ||
<div class="logo-wrapper"> | ||
<img class="logo" src="TeacherDigitalAgency_LOGO_colour-white.png" width="100"> | ||
</div> | ||
<h1 id="title">Dynamický katalog lektorů</h1> | ||
</div> | ||
<img src="https://drive.google.com/drive/folders/19gnqUhsIM3SAHlxKCuYx67Bn3eRrCved" width="703" height="466"> | ||
<h1>Mgr. Petra Swil Plachá, MBA</h1> | ||
<p>Aktivní studentka / Předsedkyně spolku / Projektová manažerka</p> | ||
<p>Brno</p> | ||
<p>Momentálně studuji Pdf MUNI a FF MUNI v Brně.</p> | ||
<p>Dobrovolnictví</p> | ||
<p>Studentské spolky</p> | ||
<p>Efektivní učení</p> | ||
<p>Prezentační dovednosti</p> | ||
<p>Marketing pro neziskové studentské projekty</p> | ||
<p>Mimoškolní aktivity</p> | ||
<p>Projektový managment, event management</p> | ||
<p>Fundraising pro neziskové studentské projekty</p> | ||
<p>cena na hodinu: 1200</p> | ||
<h3>kontakty</h3> | ||
<p>tel. číslo: +420 722 482 974</p> | ||
<p>email: [email protected], [email protected]</p> | ||
<img src="https://tourdeapp.cz/storage/images/2023_02_25/412ff296a291f021bbb6de10e8d0b94863fa89308843b/big.png.webp" width="300" height="300"> | ||
<section class="about"> | ||
<div class="main"> | ||
<img src="../static/big.png.webp"> | ||
<div class="about-text"> | ||
<h1>Mgr. Petra Swill Plachá, MBA</h1> | ||
<h5>claim</h5> | ||
<h5>lokace</h5> | ||
<p>bio</p> | ||
<p>tagy</p> | ||
<h5>cena na hodinu</h5> | ||
<h5>kontakty</h5> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
</section> | ||
|
||
|
||
|
||
<body> | ||
</html> |
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,3 +1,4 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Lalezar&display=swap'); | ||
*{ | ||
margin:0px; | ||
padding:0px; | ||
|
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,17 +1,67 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Lalezar&display=swap'); | ||
.navbar{ | ||
width: 85%; | ||
margin: auto; | ||
padding: 35px o; | ||
body{ | ||
background-color: #333; | ||
} | ||
h1{ | ||
font-family: Lalezar; | ||
} | ||
.about{ | ||
width: 100%; | ||
padding: 5px 0px; | ||
} | ||
.about img{ | ||
height: auto; | ||
width: 420px; | ||
|
||
} | ||
.about-text{ | ||
width: 550px; | ||
} | ||
.main{ | ||
width: 1130px; | ||
max-width: 95%; | ||
margin: 0 auto; | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
justify-content: space-around; | ||
|
||
} | ||
h1 { | ||
font-family: Lalezar; | ||
color: #FECB2E; | ||
text-align: center; | ||
.about-text h1{ | ||
color:#FECB2E; | ||
font-size: 50px; | ||
margin-bottom: 10px; | ||
text-transform: capitalize; | ||
} | ||
body { | ||
background-color: #333333; | ||
.about-text h5{ | ||
color:#74C7D3; | ||
font-size: 25px; | ||
text-transform: capitalize; | ||
margin-bottom: 15px; | ||
letter-spacing: 2px; | ||
} | ||
.about-text p{ | ||
color:white; | ||
} | ||
.logo-wrapper { | ||
width: fit-content; | ||
float: left; | ||
} | ||
|
||
.logo { | ||
position: relative; | ||
margin-left: 30%; | ||
margin-right: 30%; | ||
margin-top: 30%; | ||
margin-bottom: 30%; | ||
} | ||
|
||
.navbar { | ||
display: grid; | ||
grid-template-columns: 1fr 4fr 1fr; | ||
align-items: center; | ||
} | ||
|
||
#title { | ||
margin: auto; | ||
color: #FECB2E; | ||
} |