Files
@ bb749f282c4e
Branch filter:
Location: C3L-NOC/tls-expiry-tracker/frontend/style.css - annotation
bb749f282c4e
1.4 KiB
text/css
feat: add initial backend
current backend only prints out the state of the certificates in stdout.
it takes input domains from input.json, and checks only web ones.
various fail states are recogzied.
current backend only prints out the state of the certificates in stdout.
it takes input domains from input.json, and checks only web ones.
various fail states are recogzied.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d d32a175eb665 3bdd5368892d 57431ad962e9 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 57431ad962e9 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d 3bdd5368892d be5176deecaa be5176deecaa be5176deecaa be5176deecaa be5176deecaa be5176deecaa be5176deecaa be5176deecaa be5176deecaa | /* Defaults */
* {
font: inherit;
padding: 0px;
margin: 0px;
}
a {
text-decoration: none;
color: inherit;
}
/* General */
body {
background-color: #393939;
color: #d2d2d2;
font-family: "Helvetica", "Arial", sans-serif;
font-size: 20px;
}
/*
COUNT UP
*/
/* Links (block) on home page*/
.countup {
font-size: 48px;
line-height: 52px;
text-align: center;
margin-top: 15vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
/* Text on home page */
.countup__item {
display: block;
}
.countup__tls {
font-size: 100px;
line-height: 150px;
}
/*
LOGS
*/
.logs {
margin:auto;
width: max-content;
margin-top: 3vh;
border-radius: 0.1rem;
border-style: solid;
border-color: #454545;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-image: repeating-linear-gradient(135deg, #393939, #393939 5px, #454545 5px, #454545 9px);
}
.logs__title {
display: block;
margin-top: 1vh;
margin-bottom: 2vh;
font-size: 30px;
text-decoration: underline;
}
.logs__item {
display: flex;
flex-direction: row;
justify-content: space-evenly;
width: 95vh;
margin-bottom: 1vh;
}
table {
margin-left: auto;
margin-right: auto;
}
td {
padding: 5px 20px;
}
.logs__item__name {
text-align: start;
}
.logs__item__date {
text-align: end;
}
|