index2.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. #sitebody{
  2. margin:0 auto;
  3. margin-top: -80px;
  4. font-size:13px;
  5. }
  6. #nav-side-bar{
  7. /* background-color; */
  8. /* width:120px; */
  9. /* height:120px; */
  10. /* text-align:center; */
  11. line-height:40px;
  12. height: 100%;
  13. width: 250px;
  14. position: fixed;
  15. z-index: 1;
  16. top: 59.6333px;
  17. left: 0;
  18. background: url(../static/img/sidebar.png);
  19. background-size: cover;
  20. overflow-x: hidden;
  21. transition: 0.5s;
  22. }
  23. #nav-side-bar .bar_img {
  24. transform: rotate(270deg);
  25. position: absolute;
  26. right: -110%;
  27. top: 15rem;
  28. z-index: 3;
  29. }
  30. #content{
  31. position: absolute;
  32. left: 50px;
  33. top: 60px;
  34. width: calc(100% - 250px);
  35. margin-left: 250px;
  36. /* border-style:solid; */
  37. }
  38. #content_login {
  39. width: calc(100% - 250px);
  40. height: calc(100vh - 60px);
  41. margin-left: 250px;
  42. background: linear-gradient(105deg, rgba(255, 255, 255, 0.884) 0%, rgba(255, 255, 255, 0.884) 100%, transparent 100%), url(../static/img/technology.jpg);
  43. }
  44. #show_factory_class_1{
  45. border-style:solid;
  46. text-align:center;
  47. }
  48. #show_factory_class_2{
  49. border-style:solid;
  50. text-align:center;
  51. }
  52. .navbar {
  53. box-shadow: 0 2px 2px -2px rgba(0,0,0,.2);
  54. }
  55. .navbar-brand img{
  56. width: 120px;
  57. }
  58. .nav-side-bar ul {
  59. margin-top: 3rem;
  60. margin-left: 2.5rem;
  61. padding-left: 0rem;
  62. }
  63. .nav-side-bar li {
  64. padding: .5rem 0;
  65. }
  66. .nav-side-bar .side-bar-link {
  67. display: block;
  68. text-decoration-line: none;
  69. font-size: .9rem;
  70. color: white;
  71. padding-left: 2rem;
  72. }
  73. .nav-side-bar .side-bar-link.active, .nav-side-bar .side-bar-link:hover {
  74. background: white;
  75. color: black;
  76. border-top-left-radius: 8px;
  77. border-bottom-left-radius: 8px;
  78. position: relative;
  79. }
  80. .nav-side-bar .side-bar-link.active::after {
  81. position: absolute;
  82. right: 1rem;
  83. top: -2px;
  84. content: ">";
  85. }
  86. .login_form {
  87. display: block;
  88. margin: 5rem auto;
  89. width: 60%;
  90. padding-top: 7rem;
  91. }
  92. .login_form h2 {
  93. text-align: center;
  94. font-size: 2.5rem;
  95. color: #002e86;
  96. margin-bottom: 4rem;
  97. }
  98. .login_form label {
  99. color: #002e86;
  100. }
  101. .login_form input {
  102. border-radius: 10px;
  103. padding-top: .5rem;
  104. padding-bottom: .5rem;
  105. }
  106. .login_form #btn_login,.login_form #btn_register {
  107. display: block;
  108. width: 100%;
  109. border-radius: 10px;
  110. background: #002e86;
  111. border-color: #002e86;
  112. padding-top: .5rem;
  113. padding-bottom: .5rem;
  114. }