I am currently having a few problems positioning a border around my website. i am currently hosting the website here. I want a yellow border to go around the body but about 20-30px from the edges. i also want the border to be responsive so when i resize the browser the border follows too. Everything i've tried just wont work, anyone know what i need to do for it to work?
html{
height: 100%;
width: 100%;
overflow: hidden;
overflow-x: hidden;
overflow-y: hidden;
}
body{
margin: 0px;
color: #ffff00;
font-family: 'PT Sans', sans-serif;
text-align: center;
background-color: black;
}
p a {
color: #ffff00;
text-decoration: none;
letter-spacing: 5px;
}
a:hover{
color: #ffff00;
text-decoration: none;
}
video{
position: fixed;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
}
img{
max-width: 100%;
max-height: 100%;
display: block;
margin: auto auto;
}
.screen {
position: fixed;
display: block;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
background: black;
opacity: 0.3;
}
/* Index Page*/
.container{
min-width: 100%;
min-height: 100%;
margin: 0px auto;
position: fixed;
}
.logo{
padding-top: 100px;
padding-bottom: 40px;
margin: 0px auto;
width: 60%;
}
.logo h1{
font-size: 30px;
letter-spacing: 4px;
}
.nav{
padding-top: 50px;
margin: 0px auto;
width: 60%;
font-size: 25px;
}
.nav-menu{
margin: 20px auto;
font-size: 25px;
display: inline-block;
transform:scale(1,1.4); /* W3C */
-webkit-transform:scale(1,1.4); /* Safari and Chrome */
-moz-transform:scale(1,1.4); /* Firefox */
-ms-transform:scale(1,1.4); /* IE 9 */
-o-transform:scale(1,1.4); /* Opera */
padding: 13px 2px 1px 2px;
border: 3px solid #ffff00;
line-height: 0px;
text-transform:
}
.nav-menu a:hover{
color: white;
border: 4px solid #0000;
}
A pseudo-element could do that:
body {
height: 100vh;
margin: 0;
padding: 0;
position: relative;
}
body::before {
content: '';
position: absolute;
top: 10px;
left: 10px;
right: 10px;
bottom: 10px;
border: 10px solid yellow;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With