Select Git revision
style.css 1.13 KiB
body{
margin: 0;
padding: 0;
background-color: black;
background-size: cover;
}
.box{
width: 450px;
background: black;
padding: 40px;
text-align: center;
margin: auto;
margin-top: 6%;
border-radius: 30px;
color: white;
font-family: 'Century Gothic',sans-serif;
}
.box-img{
border-radius: 50%;
width: 200px;
height: 200px;
}
.box h1{
font-size: 40px;
letter-spacing: 2px;
font-weight: 100;
margin-bottom: 2%;
}
.box h5{
margin-top: 0%;
font-size: 20px;
letter-spacing: 2px;
font-weight: 100;
}
.box p{
margin-top: 0%;
text-align: justify;
}
ul{
margin: 0;
padding: 0;
}
.box li{
display: inline-block;
margin: 2px;
list-style: none;
}
.box li a{
color: #b9b9b9;
text-decoration: none;
font-size: 20px;
transition: all ease-in-out 250ms;
}
.box li a:hover{
color: green;
}
.box li p{
font-size: 20px;
margin: 10px;
transition: all ease-in-out 250ms;
}
.box li p:hover{
border-bottom: 2px solid green;
}
.current {
border-bottom: 2px solid green;
}