A Pen by Malik Ben Kirane on CodePen.
Created
January 30, 2020 08:15
-
-
Save malikbenkirane/f3fa318a331a5a59289b107fb6962aca to your computer and use it in GitHub Desktop.
wvBbZGw
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
head | |
script(src="https://unpkg.com/vue/dist/vue.js") | |
script(src="https://unpkg.com/vue-router/dist/vue-router.js") | |
body | |
header.flex.space-evenly.rrv.color3.bg-color5(unselectable="on") | |
img(src="https://i.postimg.cc/PxVKkvJF/75-B7-E4-CB-4623-4-F71-9-CB1-538-E9-F9-C900-D.png") | |
div.flex.col.space-evenly | |
div.flex.flex-end | |
div.flex-grow-1 | |
div.flex-grow-1 | |
h2 Malik Benkirane | |
h1 Aspiring Data Engineer | |
nav | |
ul.flex.wrap.space-evenly.vf | |
li Software Engineering | |
li Data Analysis | |
li Graphic Design | |
li Resume |
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
@import url('https://fonts.googleapis.com/css?family=Overpass&display=swap'); | |
* { | |
font-family: Overpass; | |
} | |
[role="button"]{ cursor: pointer } | |
[unselectable="on"]{ | |
-webkit-touch-callout: none; /* iOS Safari */ | |
-webkit-user-select: none; /* Safari */ | |
-khtml-user-select: none; /* Konqueror HTML */ | |
-moz-user-select: none; /* Firefox */ | |
-ms-user-select: none; /* Internet Explorer/Edge */ | |
user-select: none; /* Non-prefixed version, currently | |
supported by Chrome and Opera */ | |
} | |
body { | |
width: 100%; | |
margin: 0; | |
padding: 0; | |
} | |
.flex {display:flex;} | |
.flex.col {flex-direction:column;} | |
.flex.rrv {flex-direction:row-reverse;} | |
.flex.left {justify-content: flex-end;} | |
.flex.space-evenly {justify-content:space-evenly;} | |
.flex.space-around {justify-content:space-around;} | |
.flex.wrap {flex-wrap: wrap;} | |
.flex-grow-1 {flex-grow: 1;} | |
.vf {width:100%;} | |
ul { | |
list-style-type: none; | |
margin: 0; | |
padding: 0; | |
} | |
.color1{color:#0073e5} | |
.color2{color:#7ddc1f} | |
.color3{color:#f5f5f5} | |
.color4{color:#444444} | |
.color5{color:#000000} | |
.bg-color1{background:#0073e5} | |
.bg-color2{background:#7ddc1f} | |
.bg-color3{background:#f5f5f5} | |
.bg-color4{background:#444444} | |
.bg-color5{background:#000000} | |
header { | |
padding: 1vw; | |
background: black; | |
color: white; | |
h1 { | |
opacity: .6; | |
} | |
img { | |
filter: saturate(2) grayscale(.8); | |
opacity: 1; | |
@size: 20%; | |
border-radius: 0 1vw 0 1vw; | |
// margin-left: 1em; | |
// margin-right: 2em; | |
// margin-top: 1em; | |
// margin-bottom: 1em; | |
height: @size; | |
width: @size; | |
} | |
nav { | |
justify-content: space-evenly; | |
li { | |
margin-left: 2em; | |
margin-right: 2em; | |
} | |
} | |
h2,h1 {margin:0;padding:0;} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment