65 lines
No EOL
1.1 KiB
CSS
65 lines
No EOL
1.1 KiB
CSS
@import url(style.css);
|
|
|
|
.wrapper {
|
|
width: 40%;
|
|
position: relative;
|
|
margin-top: 20px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
color: white;
|
|
}
|
|
|
|
.wrapper {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-flow: row wrap;
|
|
}
|
|
|
|
.project-card {
|
|
background: #272727;
|
|
border-radius: 5px;
|
|
margin: 7px;
|
|
padding: 5px;
|
|
width: 400px;
|
|
height: 200px;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.divider {
|
|
background-color: white;
|
|
width: 80%;
|
|
border-top: 2px solid #bbb;
|
|
border-radius: 8px;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.project-title {
|
|
margin: 0;
|
|
font-size: 1.7em;
|
|
}
|
|
|
|
.project-description {
|
|
text-align: center;
|
|
}
|
|
|
|
.btn-goto {
|
|
font-family: Comfortaa, sans-serif;
|
|
width: 120px;
|
|
height: 35px;
|
|
background: #272727;
|
|
border-radius: 5px;
|
|
padding: 10px 15px;
|
|
color: white;
|
|
text-decoration: none;
|
|
box-shadow: 0 6px 6px -3px rgba(0,0,0,.2),0 10px 14px 1px rgba(0,0,0,.14),0 4px 18px 3px rgba(0,0,0,.12) !important;
|
|
transition: 0.3s;
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
.btn-goto:hover {
|
|
background: #383838;
|
|
color: white;
|
|
transition: 0.3s;
|
|
} |