Responsive images + improvements
- make images truly responsive - adjust page margins/padding - add macOS default system fonts - decrease text contrast slightly - limit characters per line for p and ul
This commit is contained in:
parent
c652308979
commit
ab07798f0a
@ -1,8 +1,10 @@
|
|||||||
body{
|
body{
|
||||||
background-color: rgba(8, 6, 37, 0.781);
|
background-color: rgba(2, 0, 30, 0.8);
|
||||||
color: white;
|
color: rgba(255, 255, 255, .8);
|
||||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, sans-serif;
|
||||||
margin-left: 5%;
|
line-height:1.3;
|
||||||
|
margin:0;
|
||||||
|
padding:3vw;
|
||||||
}
|
}
|
||||||
|
|
||||||
a, a:visited {
|
a, a:visited {
|
||||||
@ -13,7 +15,12 @@ ul{
|
|||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p, ul {
|
||||||
|
max-width: 80ch;
|
||||||
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
margin-bottom: 5px;
|
max-width: 100%;
|
||||||
height: 100%;
|
height: auto;
|
||||||
|
margin-bottom: 3vw;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user