My SMM panel
 
 
 
 
 
 

107 lines
1.4 KiB

  1. // @font-face {
  2. // font-family: "EBGaramond-initials";
  3. // src: url("font/EBGaramond/EBGaramond-Initials.otf") format("opentype");
  4. // font-style: normal;
  5. // font-weight: normal;
  6. // }
  7. html body {
  8. // font-family: 'EBGaramond', 'Times New Roman';
  9. background: url("background/interlaced/interlaced.png") repeat;
  10. margin: 0;
  11. }
  12. h1 {
  13. color: black;
  14. }
  15. a {
  16. text-decoration: none;
  17. }
  18. nav {
  19. position: absolute;
  20. width: 100%;
  21. top: 0;
  22. display: flex;
  23. flex-flow: row wrap;
  24. align-items: center;
  25. justify-content: space-between;
  26. // background-color: transparent;
  27. }
  28. nav h1 {
  29. margin: 4px 10px 0;
  30. }
  31. nav #logo {
  32. margin-right: 50px;
  33. }
  34. nav form {
  35. display: flex;
  36. flex-wrap: wrap;
  37. }
  38. nav form div {
  39. // width: 10em;
  40. margin: 0 10px;
  41. }
  42. nav form button {
  43. min-width: 5em;
  44. }
  45. nav .register-button {
  46. // width: 5em;
  47. display: block;
  48. margin: 0 20px;
  49. }
  50. @media (max-width: 720px) {
  51. nav { display: block; }
  52. nav form {
  53. display: block;
  54. width: 190px;
  55. margin-left: auto;
  56. margin-right: auto;
  57. align-items: center;
  58. }
  59. nav form div {
  60. margin: 10px auto;
  61. }
  62. nav div label,input {
  63. display: block;
  64. }
  65. nav .register-button {
  66. margin: 8px 0;
  67. }
  68. }
  69. div.landing-hero {
  70. top: 0;
  71. height: 60vh;
  72. background-color: orange;
  73. }
  74. div.hero-filter {
  75. width: 100%;
  76. height: 100%;
  77. }
  78. div.hero-filter h2 {
  79. width: 10em;
  80. font-size: 2.4em;
  81. position: absolute;
  82. top: 15%;
  83. margin-left: 3%;
  84. }
  85. div.errors {
  86. background-color: red;
  87. height: 50px;
  88. position: absolute;
  89. width: 100%;
  90. top: 50px;
  91. }