studentStyle.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. font-family: 'myFont';
  6. }
  7. html{
  8. height: 100%;
  9. }
  10. a {
  11. font-variant: normal;
  12. }
  13. body {
  14. font-weight: 400;
  15. font-size: 24px;
  16. height: 100%;
  17. width: 100%;
  18. background-color: lightgreen;
  19. display: flex;
  20. flex-direction: column;
  21. }
  22. main {
  23. flex: auto;
  24. height: 85%;
  25. }
  26. header {
  27. background-image: linear-gradient(to bottom right, #f7f3ee, #f7f1e6);
  28. font-size: 14px;
  29. overflow: hidden;
  30. top: 0;
  31. width: 100%;
  32. height: 9%;
  33. }
  34. .logo {
  35. padding: 1.5px 15px;
  36. width: 125px;
  37. height: auto;
  38. line-height: 110px;
  39. float: left;
  40. }
  41. header::after {
  42. content: '';
  43. display: table;
  44. clear: both;
  45. }
  46. nav {
  47. float: right;
  48. }
  49. nav ul {
  50. margin: 0 30px 0 0;
  51. padding: 0;
  52. float: right;
  53. list-style: none;
  54. }
  55. nav ul li {
  56. display: inline-block;
  57. margin: 0 5px;
  58. line-height: 70px;
  59. }
  60. nav a {
  61. color: rgb(116, 55, 44);
  62. text-decoration: none;
  63. text-transform: uppercase;
  64. padding: 7px 13px;
  65. }
  66. nav a:focus {
  67. color: rgb(58, 47, 34)
  68. }
  69. nav a:active {
  70. color: rgb(58, 47, 34)
  71. }
  72. .container {
  73. width: 80%;
  74. margin: 0 auto;
  75. }
  76. p {
  77. font-size: 16px;
  78. }
  79. footer {
  80. width: 100%;
  81. font-size: 14px;
  82. text-align: center;
  83. background-color: rgb(46, 35, 30);
  84. vertical-align: middle;
  85. position: fixed;
  86. bottom: 0px;
  87. height: 6%;
  88. }
  89. footer p {
  90. font-size: 1.2em;
  91. padding: 15px;
  92. color: blanchedalmond;
  93. }
  94. input[type=submit] {
  95. width: 100%;
  96. font-size: 20px;
  97. padding: 12px 20px;
  98. margin: 10px 10px;
  99. box-sizing: border-box;
  100. }