Brief_starWars/css/style.css

109 lines
1.3 KiB
CSS
Raw Normal View History

2021-10-19 19:48:52 +00:00
@font-face {
font-family: "Montserrat";
2021-10-20 09:17:57 +00:00
src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
2021-10-19 19:48:52 +00:00
}
@font-face {
font-family: "OpenSans";
2021-10-20 09:17:57 +00:00
src: url("../fonts/OpenSans-Regular.ttf") format("truetype"),
url("../fonts/OpenSans-SemiBold.ttf") format("truetype");
2021-10-19 19:48:52 +00:00
}
2021-10-19 14:41:40 +00:00
body{
2021-10-20 09:17:57 +00:00
font-family: "Montserrat";
color: #fff;
2021-10-19 15:38:04 +00:00
background-color: #031010;
color: #fff;
text-align: center;
2021-10-19 14:41:40 +00:00
}
2021-10-19 15:38:04 +00:00
header{
2021-10-19 14:41:40 +00:00
width: 100%;
2021-10-19 15:38:04 +00:00
height: 200px;
2021-10-20 09:17:57 +00:00
justify-content: center;
position: sticky;
top: 0%;
2021-10-19 15:38:04 +00:00
background-color:#2A4158;
2021-10-20 09:17:57 +00:00
display: flex;
flex-flow: wrap column ;
}
nav{
display: flex;
flex-flow: wrap column ;
justify-content: center;
}
.SearchBar{
width: 784px;
height: 46px;
}
ul{
display: flex;
flex-flow: wrap row ;
justify-content: space-evenly;
2021-10-19 15:38:04 +00:00
}
2021-10-20 09:17:57 +00:00
li{
list-style: none;
2021-10-19 15:38:04 +00:00
2021-10-20 09:17:57 +00:00
}
a{
font-family: "Montserrat";
font-size: 18px;
color: #fff;
text-decoration: none;
2021-10-19 15:38:04 +00:00
}
.navSearch{
2021-10-19 14:41:40 +00:00
}
2021-10-19 15:38:04 +00:00
h1{
font-size: 48px;
2021-10-19 14:41:40 +00:00
}
2021-10-19 15:38:04 +00:00
h2{
2021-10-19 14:41:40 +00:00
}
2021-10-19 15:38:04 +00:00
.card{
2021-10-19 14:41:40 +00:00
}
2021-10-20 09:17:57 +00:00
.details{
display:none;
}
.active{
display: block;
}
2021-10-19 15:38:04 +00:00
.data{
2021-10-19 14:41:40 +00:00
}
2021-10-19 15:38:04 +00:00
h3{
2021-10-19 14:41:40 +00:00
}
2021-10-19 15:38:04 +00:00
p{
2021-10-19 14:41:40 +00:00
}
2021-10-19 15:38:04 +00:00
.boutons{
2021-10-19 14:41:40 +00:00
2021-10-19 15:38:04 +00:00
}
2021-10-20 09:17:57 +00:00
2021-10-19 15:38:04 +00:00
footer{
2021-10-20 09:17:57 +00:00
width: auto;
height: 400px;
background-image:url(../images/footer.png);
background-size: 100% ;
2021-10-19 14:41:40 +00:00
}