1
0
Fork 0
mirror of https://github.com/SinTan1729/chhoto-url synced 2024-10-17 05:36:28 -05:00
chhoto-url/actix/resources/static/styles.css

100 lines
1.4 KiB
CSS
Raw Normal View History

2023-04-09 16:38:14 -05:00
.container {
max-width: 950px;
margin: 20px auto auto;
}
table {
width: 100%;
}
table tr td div {
max-height: 75px;
line-height: 25px;
word-wrap: break-word;
max-width: 575px;
overflow: auto;
}
td[name="deleteBtn"] {
text-align: center;
}
td[name="deleteBtn"] button {
border-radius: 50%;
border-style: solid;
cursor: pointer;
background-color: transparent;
}
input {
width: 65%;
}
form input[name="shortUrl"] {
text-transform: lowercase;
}
form input[name="shortUrl"]::placeholder {
text-transform: none;
}
2023-04-10 15:20:20 -05:00
div[name="github-link"] {
2023-04-09 16:38:14 -05:00
position: absolute;
right: 0.5%;
2023-04-14 17:18:18 -05:00
top: 0.5%;
2023-04-10 15:20:20 -05:00
}
.pure-table {
visibility: hidden;
}
.pure-table caption {
font-size: 22px;
text-align: left;
font-style: normal;
}
#logo {
font-size: 32px;
2023-04-14 17:18:18 -05:00
}
#password {
width: 100%;
margin-bottom: 10px;
}
dialog form {
text-align: center;
}
/* Settings for mobile devices */
@media (pointer:none),
(pointer:coarse) {
table tr {
border-bottom: 1px solid #999;
}
table thead {
display: none;
}
table td {
display: flex;
}
table td::before {
content: attr(label);
font-weight: bold;
width: 120px;
min-width: 120px;
text-align: left;
}
table tr td div {
width: 63vw
}
.pure-table caption {
padding-top: 0px;
}
2023-04-09 16:38:14 -05:00
}