css 适用于WildPursuit的App.css

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 适用于WildPursuit的App.css相关的知识,希望对你有一定的参考价值。

@font-face {
  font-family: 'Sagoma-Regular';
  src: url('./fonts/Sagoma-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
 }
  
@keyframes pulse {
    0% {
        background-color: #FF6A8B;
    }
    25%  {
        background: #0275D8;
    }
    50%  {
        background: #FFC300;
    }
    75%  {
        background: #9E01A5;
    }
    100% {
        background-color: #FF6A8B;
    }
}

body {
  background-color: #FFC300;
  text-align: center !important;
  animation: pulse 30s infinite;
}

.mainTitle {
  font-family: 'Sagoma-Regular';
  color: #FFF;
  font-size: 75px;
  padding-top: 50px;
}

.subTitle {
  font-family: 'Open sans';
  font-size: 23px;
  margin-top: 20px;
}

.footer {
  position:fixed;
  height: 44px;
  background-color: #000;
  bottom:0;
  width:100%;
  margin-top: 75px !important

}

a {
  color: #FFF !important;
}

a:hover {
  text-decoration: none;
}

.myButton {
  margin-top: 30px;
  margin-bottom: 30px;
}

以上是关于css 适用于WildPursuit的App.css的主要内容,如果未能解决你的问题,请参考以下文章

javascript WildPursuit的Index.js

javascript WildPursuit的App.js

css 仅适用于Firefox的CSS

css 适用于MacDown的GitHub CSS

CSS 仅适用于IE7的CSS

CSS3 动画仅适用于 webkit? [关闭]