Updated robots.txt in order to catch more AI training bots. Changed main text color to #00b800 in order to have a better contrast for reading.

This commit is contained in:
Lucia Heidecker 2025-07-11 14:13:14 +02:00
parent 75b4b32033
commit deb44b00c4
7 changed files with 97 additions and 34 deletions

View file

@ -1,4 +1,5 @@
:root{
--main: #00b800; /* text with this color on a black or "contrast-bg" background has a contrast rating of at least 7, which makes it compliant with WCAG guidelines AAA standard */
--contrast-bg: #001000;
}
body{
@ -9,13 +10,13 @@ body{
background-repeat: repeat;
background-attachment: fixed;
font-family: "Hack", monospace;
color: green;
color: var(--main);
}
.content{
max-width: 1000px;
border-left: green 3px solid;
border-right: green 3px solid;
border-left: var(--main) 3px solid;
border-right: var(--main) 3px solid;
background: black;
margin: 0 auto;
padding-bottom: 1px;
@ -24,7 +25,7 @@ body{
}
a{
color: green;
color: var(--main);
}
#title{
@ -85,12 +86,12 @@ li{
.links-nav>span>a:hover{
color: #000000;
background-color: green;
background-color: var(--main);
}
a.highlight{
color: #000000;
background-color: green;
background-color: var(--main);
text-decoration: none;
}
@ -130,6 +131,10 @@ a.highlight{
margin: 0 10px;
}
.footer-links{
white-space: pre;
}
/* FAQ-specific */
.question{
@ -154,9 +159,8 @@ a.highlight{
.license-table{
margin: 0 auto;
max-width: 800px;
min-width: 400px;
width: 90%;
min-width: 395px;
width: 95%;
}
.license-head{
@ -164,12 +168,22 @@ a.highlight{
text-align: left;
}
.license-head>tr>th, .license-body>tr>td{
padding-left: 3px;
}
.project-column, .by-column{
width: 40%;
width: 25%;
}
.license-column{
width: 20%;
width: 10%;
}
@media (max-width:440px){
.notes-column, .license-notes{
display:none;
}
}
/* Links-specific */
@ -178,7 +192,7 @@ a.highlight{
text-decoration: none;
}
.buttons-88x31>a>img{
.buttons-88x31>a>img, .buttons-88x31>img{
display: inline-block;
width: 88px;
height: 31px;
@ -222,6 +236,7 @@ a.highlight{
}
/* Colors */
.blue{
color: lightblue;
}