sarsooxyz.pyreact/static/style.css
2019-02-16 18:28:49 +00:00

72 lines
974 B
CSS

body {
background-color: #51688e;
}
h1 {
color: white;
font-family: 'Ubuntu', sans-serif;
font-size: 14vw;
text-shadow: 3px 3px 3px #aaa;
}
h3 {
color: white;
font-family: 'Ubuntu', sans-serif;
font-size: 4vw;
text-shadow: 3px 3px 3px #aaa;
}
a {
color: white;
font-family: 'Ubuntu', sans-serif;
font-size: 20px;
text-shadow: 2px 2px 2px #aaa;
}
p {
color: white;
font-family: 'Ubuntu', sans-serif;
font-size: 4vw;
text-shadow: 2px 2px 2px #aaa;
}
.header {
background-color: #58518e;
padding: 0px;
width: 60vw;
height: 18vw;
text-align: center;
margin: auto;
}
.navbar {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
.navbar li {
float: left;
position: -webkit-sticky;
position: sticky;
top: 0;
}
.navbar a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.navbar a:hover {
background-color: #111;
}
}