You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.css 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. body {
  2. background-color:#eee;
  3. width:100%;
  4. margin:0;
  5. }
  6. header {
  7. position:fixed;
  8. left:0;
  9. top:0;
  10. text-shadow:1px 1px 2px #888;
  11. width:100%;
  12. }
  13. h1, h2 {
  14. display:inline-block;
  15. }
  16. main {
  17. margin:100px auto;
  18. width:100%;
  19. max-width: 1100px;
  20. font-size:1.2em;
  21. position:relative;
  22. text-align:justify;
  23. transition:.1s;
  24. display:flex;
  25. flex-wrap: wrap;
  26. justify-content: space-around;
  27. }
  28. #description{
  29. flex: 100%;
  30. }
  31. main>div {
  32. margin:25px;
  33. min-width: 250px;
  34. padding:35px;
  35. transition:.1s;
  36. flex:33%;
  37. }
  38. main>div:hover {
  39. transform:scale(1.1);
  40. }
  41. header, main>div {
  42. box-shadow: 2px 2px 10px #000;
  43. background-color:#fff;
  44. }
  45. header:hover h2 {
  46. animation:colorchange 100s infinite;
  47. }
  48. .wbo-button {
  49. white-space: nowrap;
  50. text-decoration: none;
  51. background: linear-gradient(#C4DFFF, #8FA2BC);
  52. margin-top: 15px;
  53. line-height: 60px;
  54. border-radius: 30px;
  55. box-shadow: inset 0 0 3px #8FA2BC;
  56. display: block;
  57. text-align: center;
  58. color: black;
  59. transition: .1s;
  60. }
  61. a{
  62. color: black;
  63. }
  64. .wbo-button:hover{
  65. box-shadow: 0 0 5px #C4DFFF;
  66. }
  67. .wbo-button:focus, .wbo-button:active {
  68. box-shadow: 0 0 5px #0074D9;
  69. background: linear-gradient(#96E1FF, #36A2FF);
  70. }
  71. input{
  72. line-height: 20px;
  73. border-radius: 5px;
  74. border: 1px solid #ddd;
  75. padding: 6px;
  76. font-size: 1.1em;
  77. margin: 9px 0;
  78. }
  79. footer{
  80. font-size: .9em;
  81. position:fixed;
  82. bottom: 0;
  83. right: 0;
  84. }