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;
|
||||
}
|
||||
|
||||
.blue-column {
|
||||
background-color: blue;
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
.green-column {
|
||||
background-color: green;
|
||||
height: 100px;
|
||||
.header {
|
||||
font-family: "Playfair Display", serif;
|
||||
text-align: center;
|
||||
font-size: 4em;
|
||||
}
|
||||
/*# sourceMappingURL=officers.css.map */
|
16
css/officers.sass
Normal file → Executable file
|
@ -2,8 +2,7 @@
|
|||
|
||||
.officers
|
||||
margin: 10vh 20vh
|
||||
|
||||
|
||||
|
||||
.row
|
||||
display: flex
|
||||
flex-direction: row
|
||||
|
@ -16,12 +15,7 @@
|
|||
flex-basis: 100%
|
||||
flex: 1
|
||||
|
||||
|
||||
.blue-column
|
||||
background-color: blue
|
||||
height: 100px
|
||||
|
||||
|
||||
.green-column
|
||||
background-color: green
|
||||
height: 100px
|
||||
.header
|
||||
font-family: $subtitle-stack
|
||||
text-align: center
|
||||
font-size: 4em
|
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>
|
||||
</header>
|
||||
<section class="officers">
|
||||
<div class="row">
|
||||
<h1 class="header">Meet the officers.</h1>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="column">
|
||||
<div>Some Text in Column One</div>
|
||||
<div class="profile">
|
||||
<img />
|
||||
</div>
|
||||
</div>
|
||||
<div class="column">
|
||||
<div>Some Text in Column Two</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<script src="base.js"></script>
|
||||
<script src="/js/base.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|