create-mori
Version:
Quickly create project templates to support the required repositories as much as possible
50 lines (42 loc) • 794 B
text/less
#container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
button {
background-color: #000;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
.btn-group {
display: flex;
gap: 10px;
}
}
a {
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
border: 3px solid #bb805f;
background-color: #eee;
color: #59b78a;
&.active {
border: 3px solid #bb805f;
background-color: #59b78a;
color: #b8e58c;
}
}
#nav {
display: flex;
gap: 10px;
}
#about {
margin-top: 20px;
display: flex;
flex-direction: column;
gap: 10px;
}