123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- @charset "UTF-8";
- *{
- scroll-behavior: smooth;
- }
- body {
- margin: 0;
- padding: 0;
- }
- section{
- position:relative;
- width: 100%;
- height: 850px;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 5em;
- font-weight: 800;
- }
- section:nth-child(odd){
- background: #CBCCD6;
- }
- section:nth-child(even){
- background: #B4B8C5;
- }
- .first {
- padding: 0.5rem;
- display: flex;
- flex-direction: column;
- }
- .first p {
- font: small-caps bold 1rem sans-serif;
- text-align: center;
- }
- nav{
- position: fixed;
- top: 0;
- width: 100%;
- text-align: center;
- background: #84596B;
- }
- nav a{
- position: relative;
- color:#000000;
- text-decoration: none;
- padding: 8px 25px;
- font-size: 1.3em;
- text-transform: uppercase;
- display: inline-block;
- }
- nav a:hover,
- section#n1:hover~nav a[href="#n1"],
- section#n2:hover~nav a[href="#n2"],
- section#n3:hover~nav a[href="#n3"]
- {
- background: #8D818C;
- color: #FFD670;
- }
- nav a:active{
- background: #D1D1D1;
- }
|