working: added flex to officers and fixed js
0
.gitignore
vendored
Normal file → Executable file
0
css/base.css
Normal file → Executable file
0
css/base.sass
Normal file → Executable file
0
css/index.css
Normal file → Executable file
0
css/index.sass
Normal file → Executable file
12
css/officers.css
Normal file → Executable file
|
@ -177,13 +177,9 @@ header nav .burger div {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blue-column {
|
.header {
|
||||||
background-color: blue;
|
font-family: "Playfair Display", serif;
|
||||||
height: 100px;
|
text-align: center;
|
||||||
}
|
font-size: 4em;
|
||||||
|
|
||||||
.green-column {
|
|
||||||
background-color: green;
|
|
||||||
height: 100px;
|
|
||||||
}
|
}
|
||||||
/*# sourceMappingURL=officers.css.map */
|
/*# sourceMappingURL=officers.css.map */
|
16
css/officers.sass
Normal file → Executable file
|
@ -2,8 +2,7 @@
|
||||||
|
|
||||||
.officers
|
.officers
|
||||||
margin: 10vh 20vh
|
margin: 10vh 20vh
|
||||||
|
|
||||||
|
|
||||||
.row
|
.row
|
||||||
display: flex
|
display: flex
|
||||||
flex-direction: row
|
flex-direction: row
|
||||||
|
@ -16,12 +15,7 @@
|
||||||
flex-basis: 100%
|
flex-basis: 100%
|
||||||
flex: 1
|
flex: 1
|
||||||
|
|
||||||
|
.header
|
||||||
.blue-column
|
font-family: $subtitle-stack
|
||||||
background-color: blue
|
text-align: center
|
||||||
height: 100px
|
font-size: 4em
|
||||||
|
|
||||||
|
|
||||||
.green-column
|
|
||||||
background-color: green
|
|
||||||
height: 100px
|
|
0
css/res/lincoln-mobile.png
Normal file → Executable file
Before Width: | Height: | Size: 96 KiB After Width: | Height: | Size: 96 KiB |
0
css/res/lincoln-trans.png
Normal file → Executable file
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 71 KiB |
0
css/res/lincoln.png
Normal file → Executable file
Before Width: | Height: | Size: 93 KiB After Width: | Height: | Size: 93 KiB |
0
favicon.svg
Normal file → Executable file
Before Width: | Height: | Size: 499 B After Width: | Height: | Size: 499 B |
0
index.html
Normal file → Executable file
0
js/base.js
Normal file → Executable file
0
js/index.js
Normal file → Executable file
0
js/officers.js
Normal file → Executable file
9
officers.html
Normal file → Executable file
|
@ -30,15 +30,20 @@
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
<section class="officers">
|
<section class="officers">
|
||||||
|
<div class="row">
|
||||||
|
<h1 class="header">Meet the officers.</h1>
|
||||||
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="column">
|
<div class="column">
|
||||||
<div>Some Text in Column One</div>
|
<div class="profile">
|
||||||
|
<img />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="column">
|
<div class="column">
|
||||||
<div>Some Text in Column Two</div>
|
<div>Some Text in Column Two</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<script src="base.js"></script>
|
<script src="/js/base.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|