Skip to content

Commit

Permalink
feat: use 1px borders
Browse files Browse the repository at this point in the history
  • Loading branch information
frectonz committed Oct 6, 2024
1 parent 5e35212 commit f37afe8
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions ui/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
.header {
display: grid;
grid-template-columns: 90% 10%;
border-bottom: 2px solid black;
border-bottom: 1px solid black;
}

.header>div {
Expand All @@ -30,7 +30,7 @@
}

.header__main {
border-right: 2px solid black;
border-right: 1px solid black;
}

.header__main a {
Expand All @@ -49,7 +49,7 @@
.status {
display: grid;
grid-template-columns: 70% 30%;
border-bottom: 2px solid black;
border-bottom: 1px solid black;
}

.status>div {
Expand All @@ -62,38 +62,38 @@
.status>div>img {}

.status__registry {
border-right: 2px solid black;
border-right: 1px solid black;
background-color: #86efac;
}

.page__title {
padding: 2rem;
font-size: 2rem;
border-bottom: 2px solid black;
border-bottom: 1px solid black;
}

.loading__title {
padding: 2rem;
font-size: 2rem;
border-bottom: 2px solid black;
border-bottom: 1px solid black;
}

.failure__title {
padding: 2rem;
font-size: 2rem;
background-color: #fca5a5;
border-bottom: 2px solid black;
border-bottom: 1px solid black;
}

.repo {
display: grid;
grid-template-columns: 10% 80% 10%;
border-bottom: 2px solid black;
border-bottom: 1px solid black;
}

.repo>div {
padding: 1rem;
border-right: 2px solid black;
border-right: 1px solid black;
}

.repo>div:last-child {
Expand All @@ -103,25 +103,25 @@
.image {
display: grid;
grid-template-columns: 60% 40%;
border-bottom: 2px solid black;
border-bottom: 1px solid black;
margin-bottom: 2rem;
}

.image>div:first-child {
border-right: 2px solid black;
border-right: 1px solid black;
}

.layers__title {
padding: 1rem 2rem;
color: white;
background-color: black;
border-bottom: 2px solid black;
border-bottom: 1px solid black;
}

.layers>div {
display: grid;
grid-template-columns: 80% 20%;
border-bottom: 2px solid black;
border-bottom: 1px solid black;
}

.layers>div>p {
Expand All @@ -135,14 +135,14 @@
.layers>div>p:last-child {
color: white;
background-color: black;
border-top: 2px solid white;
border-top: 1px solid white;
}

.metadata>div {
display: grid;
gap: 1rem;
padding: 2rem;
border-bottom: 2px solid black;
border-bottom: 1px solid black;
}
</style>
</head>
Expand Down

0 comments on commit f37afe8

Please sign in to comment.