97 lines
1.6 KiB
CSS
97 lines
1.6 KiB
CSS
body {
|
|
font-size:14px;
|
|
font-family:'Merriweather', serif;
|
|
line-height: 1.8;
|
|
color: #d9d9d9;
|
|
background-color:#ffffff;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 35px;
|
|
text-transform: uppercase;
|
|
color:#b3b3b3;
|
|
font-weight: 600;
|
|
}
|
|
|
|
a {
|
|
color:#cccccc;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.clear_top{
|
|
font-size: 40px;
|
|
color:#ffffff;
|
|
}
|
|
|
|
.card-img{
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-top:20%;
|
|
max-height:80%;
|
|
max-width:80%;
|
|
border-radius: 20%;
|
|
border-style:
|
|
}
|
|
.card-img:hover {
|
|
-webkit-transform: scaleX(-1);
|
|
transform: scaleX(-1);
|
|
}
|
|
|
|
.list-inline-item{
|
|
size:15px;
|
|
color:#00004d;
|
|
}
|
|
|
|
.skill{
|
|
height:45px;
|
|
}
|
|
|
|
.show_first{display:block;}
|
|
.show_hover{display:none;}
|
|
|
|
.terminal{
|
|
padding-top: 5px;
|
|
padding-bottom: 10px;
|
|
background-color: black;
|
|
}
|
|
|
|
.window-top{
|
|
color: black;
|
|
background-color: #b0b7b2;
|
|
border: 1px solid #353535;
|
|
}
|
|
|
|
.terminal a, .terminal p{
|
|
position: relative;
|
|
color: #00ff00;
|
|
font-family: 'Roboto', sans-serif;
|
|
font-size: 14px;
|
|
}
|
|
.terminal .cursor{
|
|
position: relative;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
background: black;
|
|
box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
border-left: .5em solid;
|
|
|
|
-webkit-animation: typing 12s steps(20, end) infinite,
|
|
blinking 1s step-end infinite;
|
|
animation: typing 12s steps(20, end) infinite,
|
|
blinking 1s step-end infinite;
|
|
}
|
|
|
|
@-webkit-keyframes blinking {
|
|
from, to { border-color: transparent; }
|
|
50% { border-color: green; }
|
|
}
|
|
|
|
@keyframes blinking {
|
|
from, to { border-color: transparent; }
|
|
50% { border-color: green; }
|
|
}
|