| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- body {
- background-color:#eee;
- width:100%;
- margin:0;
- }
-
- header {
- position:fixed;
- left:0;
- top:0;
- text-shadow:1px 1px 2px #888;
- width:100%;
- }
-
- h1, h2 {
- display:inline-block;
- }
-
- main {
- margin:100px auto;
- width:100%;
- max-width: 1100px;
- font-size:1.2em;
- position:relative;
- text-align:justify;
- transition:.1s;
- display:flex;
- flex-wrap: wrap;
- justify-content: space-around;
- }
-
- #description{
- flex: 100%;
- }
-
- main>div {
- margin:25px;
- min-width: 250px;
- padding:35px;
- transition:.1s;
- flex:33%;
- }
-
- main>div:hover {
- transform:scale(1.1);
- }
-
- header, main>div {
- box-shadow: 2px 2px 10px #000;
- background-color:#fff;
- }
-
- header:hover h2 {
- animation:colorchange 100s infinite;
- }
-
- .wbo-button {
- white-space: nowrap;
- text-decoration: none;
- background: linear-gradient(#C4DFFF, #8FA2BC);
- margin-top: 15px;
- line-height: 60px;
- border-radius: 30px;
- box-shadow: inset 0 0 3px #8FA2BC;
- display: block;
- text-align: center;
- color: black;
- transition: .1s;
- }
-
- a{
- color: black;
- }
-
- .wbo-button:hover{
- box-shadow: 0 0 5px #C4DFFF;
- }
-
- .wbo-button:focus, .wbo-button:active {
- box-shadow: 0 0 5px #0074D9;
- background: linear-gradient(#96E1FF, #36A2FF);
- }
-
- input{
- line-height: 20px;
- border-radius: 5px;
- border: 1px solid #ddd;
- padding: 6px;
- font-size: 1.1em;
- margin: 9px 0;
- }
-
- footer{
- font-size: .9em;
- position:fixed;
- bottom: 0;
- right: 0;
- }
|