Skip to content
Merged
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
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# osusec.github.io
The official website for OSU Security Club
The official website for OSU Security Club. Hosted at [osusec.github.io](http://osusec.github.io/) .

# Contributing
If you would like to contribute, please read CONTRIBUTING.md first.
45 changes: 28 additions & 17 deletions assets/css/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 36 additions & 12 deletions assets/css/main.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
//@import 'normalize';

$bodybg: #FFF;
$nav-color: rgba(249, 249, 249, .7);
$prim: #AE1215;
$sec: #292929;
$accent: #AE1215;
Expand All @@ -18,23 +19,25 @@ body{

//Navigation
#navbar{
height: $navheight;
background: rgba(249, 249, 249, .7);
height: auto;
background: $nav-color;
display: flex;

ul{
height: $navheight;
margin: 0px;
padding: 0px;
display: inline-block;
display: flex;
flex-wrap: wrap;
background: $nav-color;

li{
display: inline-block;
height: $navheight;
display: inline-flex;
padding: 0px;
margin: 0px;

a{
line-height: $navheight;
display: block;
padding: 0px 10px;
color: $accent;
font-size: 20px;
Expand Down Expand Up @@ -95,14 +98,17 @@ li{
padding: 0px;
background: $prim;
height: auto;
display: block;
display: flex;
flex-wrap: wrap;
color: $light;

.column{
height: inherit;
width: 30%;
padding: 20px;
display: table-cell;
vertical-align: top;
flex-grow: 1;
}

#one{
Expand Down Expand Up @@ -201,16 +207,34 @@ li{
}
}

@media (max-width: 550px){
@media (max-width: 600px){
.columns{
.column{
width: 100%;

ul{
padding: 0;
}
}

#one{
border-right: none;
border-bottom: 2px dotted $dark;
}
#three{
border-left: none;
border-top: 2px dotted $dark;
}
}

.officer{
min-width: 300px;
max-width: 100%;
}

#navbar{
display:none;
}
#mobile-nav{
display: block;
ul{
justify-content: center;
}
}
}