placeholder in front matter, social media links, open source from github
This commit is contained in:
45
public/css/style.css
Normal file
45
public/css/style.css
Normal file
@@ -0,0 +1,45 @@
|
||||
.container {
|
||||
margin: 0 auto;
|
||||
width: 80%;
|
||||
}
|
||||
nav, footer {
|
||||
background-color: #333;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
}
|
||||
nav {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
nav > a {
|
||||
flex: 1;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 768px) {
|
||||
nav { flex-direction: row; }
|
||||
}
|
||||
|
||||
.project-container { display: flex; }
|
||||
|
||||
.project-container .project-list { width: 20%; }
|
||||
|
||||
.project-container .project { flex: 1; }
|
||||
/* might do the same with present(ation) */
|
||||
|
||||
.oss {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.oss article {
|
||||
border: 1px solid #ddd;
|
||||
box-shadow: 3px 3px 3px #ddd;
|
||||
margin: 0.5%;
|
||||
padding: 0.5%;
|
||||
width: 30%;
|
||||
}
|
||||
Reference in New Issue
Block a user