sarsooxyz.pyreact/static/style.css

72 lines
974 B
CSS
Raw Normal View History

2019-02-07 13:54:26 +00:00
body {
2019-02-07 15:46:08 +00:00
background-color: #51688e;
2019-02-07 13:54:26 +00:00
}
h1 {
2019-02-07 15:25:01 +00:00
color: white;
font-family: 'Ubuntu', sans-serif;
2019-02-16 15:30:12 +00:00
font-size: 14vw;
text-shadow: 3px 3px 3px #aaa;
}
h3 {
color: white;
font-family: 'Ubuntu', sans-serif;
font-size: 4vw;
2019-02-07 15:46:08 +00:00
text-shadow: 3px 3px 3px #aaa;
}
a {
color: white;
font-family: 'Ubuntu', sans-serif;
2019-02-16 18:28:49 +00:00
font-size: 20px;
2019-02-07 15:46:08 +00:00
text-shadow: 2px 2px 2px #aaa;
2019-02-07 13:54:26 +00:00
}
2019-02-16 15:30:12 +00:00
p {
color: white;
font-family: 'Ubuntu', sans-serif;
font-size: 4vw;
text-shadow: 2px 2px 2px #aaa;
}
.header {
background-color: #58518e;
2019-02-16 18:28:49 +00:00
padding: 0px;
width: 60vw;
height: 18vw;
2019-02-16 15:30:12 +00:00
text-align: center;
margin: auto;
}
2019-02-16 18:28:49 +00:00
.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;
}
}