Changeset 43c9090 for src/main/resources/static/css
- Timestamp:
- 10/12/24 21:32:15 (5 weeks ago)
- Branches:
- master
- Parents:
- 743de55
- Location:
- src/main/resources/static/css
- Files:
-
- 2 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/static/css/admin-terms.css
r743de55 r43c9090 44 44 } 45 45 #active{ 46 margin: 15px 0;46 padding: 15px; 47 47 display: flex; 48 48 flex-direction: column; 49 49 gap: 10px; 50 border: 1px solid #ccc; 51 border-radius: 5px; 52 background-color: #f9f9f9; 50 53 } 51 54 #frame{ … … 79 82 position: relative; 80 83 overflow: hidden; 81 /* transform: scale(1.25); */82 84 } 83 85 … … 131 133 cursor: pointer; 132 134 animation: to-top 1s forwards; 133 /* border-radius: 50%; */134 135 } 135 136 #frame > *:hover{ 136 137 background-color:white; 137 transition: background-color 0.3s, transform 0.3s;138 138 } 139 139 … … 276 276 font-size: 14px; 277 277 height: 30px; 278 width: 55px;278 width: 70px; 279 279 padding: 5px; 280 overflow: hidden; /* Hide overflow if needed */280 overflow: hidden; 281 281 } 282 282 … … 291 291 width: 100%; 292 292 height: 100%; 293 background-color: rgba(0, 0, 0, 0.5); /* Dark background */293 background-color: rgba(0, 0, 0, 0.5); 294 294 justify-content: center; 295 295 align-items: center; … … 320 320 } 321 321 322 #cancelBtn 323 background-color: #f 44336; /* Red */322 #cancelBtn, #temporal-deletion, #delete-approval{ 323 background-color: #ff6666; 324 324 color: white; 325 } 326 327 #approveBtn { 328 background-color: #4CAF50; /* Green */ 325 max-width: fit-content; 326 } 327 328 #approveBtn, #confirm-approval, #approve-carried-out{ 329 background-color: #4CAF50; 329 330 color: white; 330 331 } … … 390 391 background-color: #f9f9f9; 391 392 } 393 392 394 #creation > * { 393 395 padding-bottom: 10px; … … 405 407 } 406 408 407 #delete-all-free button { 408 padding: 10px; 409 background-color: #ff6666; 409 #authButton{ 410 position: absolute; 411 left: 1145px; 412 top: 21px; 413 width: 150px; 410 414 color: white; 415 background-color: red; 416 padding: 10px; 411 417 border: none; 412 418 border-radius: 5px; 413 cursor: pointer;414 419 } 415 420 … … 423 428 } 424 429 425 426 427 /* Table styles */428 430 table { 429 width: 320px; 431 padding-top: 10px; 432 width: fit-content; 430 433 border-collapse: collapse; 431 434 margin-bottom: 20px; 432 435 } 433 436 434 /* Table header styles */ 435 thead { 436 background-color: #007BFF; 437 color: white; 438 } 439 440 th { 437 438 thead > tr { 441 439 padding: 10px; 442 440 text-align: left; 443 441 } 444 445 446 442 447 443 tbody tr { … … 451 447 452 448 tbody tr:hover { 453 background-color: #f1f1f1; /* Highlight row on hover */449 background-color: #f1f1f1; 454 450 } 455 451 … … 457 453 padding: 10px; 458 454 } 455 456 #request-assets, #appointment-assets 457 { 458 display: flex; 459 flex-direction: row; 460 gap: 10px; 461 } 462 463 h3{ 464 padding-top: 20px; 465 } 466 #summary{ 467 margin-top: 20px; 468 padding: 15px; 469 display: flex; 470 flex-direction: column; 471 border: 1px solid #ccc; 472 border-radius: 5px; 473 background-color: #f9f9f9; 474 } 475 #authButton{ 476 position: absolute; 477 left: 1145px; 478 top: 21px; 479 width: 150px; 480 } -
src/main/resources/static/css/admin.css
r743de55 r43c9090 41 41 padding: 30px; 42 42 display: grid; 43 grid-template-columns: repeat(2, 1fr); /* Create two equal columns */ 44 gap: 20px; /* Space between grid items */ 43 44 grid-template-columns: repeat(2, 1fr); 45 gap: 20px; 45 46 } 46 47 #menu a { 47 display: flex; /* Enable Flexbox for a */48 flex-direction: column; /* Align icon and text vertically */49 align-items: center; /* Center items horizontally */48 display: flex; 49 flex-direction: column; 50 align-items: center; 50 51 justify-content: center; 51 text-decoration: none; /* Remove underline from links */52 padding: 15px; /* Add padding inside each link */53 border: 1px solid #ccc; /* Optional: border around each link */52 text-decoration: none; 53 padding: 15px; 54 border: 1px solid #ccc; 54 55 border-radius: 5px; 55 56 font-size: 30px; ; 56 57 } 57 58 #menu a:hover { 58 background-color: white; /* Light blue background on hover */59 background-color: white; 59 60 transition: background-color 0.3s ease; 60 61 border: 1px solid black; … … 62 63 63 64 #menu img { 64 max-width: 50px; /* Limit the width of images */65 margin-bottom: 5px; /* Space between image and text */65 max-width: 50px; 66 margin-bottom: 5px; 66 67 } 68 #authButton{ 69 position: absolute; 70 left: 1145px; 71 top: 21px; 72 width: 150px; 73 color: white; 74 background-color: red; 75 padding: 10px; 76 border: none; 77 border-radius: 5px; 78 } -
src/main/resources/static/css/adminNews.css
r743de55 r43c9090 27 27 } 28 28 .news-item{ 29 display: flex; /* Aligns image and text in a row */30 flex-direction: column; /* Change to 'row' for horizontal layout */31 width: 260px;29 display: flex; 30 flex-direction: column; 31 width: 420px; 32 32 align-items: center; 33 33 justify-content: center; 34 34 margin: 0 15px 10px 0; 35 35 padding: 20px; 36 border: 1px solid #ddd; /* Optional: Adds a border */36 border: 1px solid #ddd; 37 37 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 38 38 } 39 .news-item > *{ 40 text-align: left; 41 } 39 42 img{ 40 width: 100%; /* Make image responsive */41 max-width: 400px; /* Set a maximum width for the image */42 height: auto; /* Maintain aspect ratio */43 border-radius: 10px; /* Optional: Adds rounded corners */43 width: 100%; 44 max-width: 400px; 45 height: auto; 46 border-radius: 10px; 44 47 margin-bottom: 15px; 45 48 } … … 47 50 font-size: 1.2rem; 48 51 line-height: 1.5; 49 text-align: center; /* Center the text */52 text-align: center; 50 53 color: #333; 51 54 margin: 0; … … 53 56 @media (max-width: 768px) { 54 57 .news-item { 55 flex-direction: column; /* Stack elements on smaller screens */58 flex-direction: column; 56 59 } 57 60 } … … 98 101 } 99 102 100 /* Style for the upload button */101 103 #open-popup { 102 104 padding: 10px 20px; … … 110 112 111 113 #image-popup { 112 width: 400px; /* Set a width for the modal */114 width: 400px; 113 115 background-color: white; 114 116 border-radius: 8px; … … 126 128 } 127 129 128 /* Image preview area */129 130 #image-preview { 130 131 margin-top: 10px; … … 133 134 } 134 135 135 /* Style for buttons inside the popup */136 136 #image-popup button { 137 137 padding: 8px 15px; … … 147 147 148 148 #edit-button, #save-button { 149 background-color: #17a2b8; /* Blueish color */149 background-color: #17a2b8; 150 150 } 151 151 152 152 153 /* Overlay */154 153 #overlay { 155 background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */156 z-index: 999; /* Ensure it is behind the modal but above everything else */154 background: rgba(0, 0, 0, 0.5); 155 z-index: 999; 157 156 } 158 157 159 /* Button hover effects */160 158 #image-popup button:hover, #open-popup:hover { 161 159 opacity: 0.9; 162 160 } 163 161 164 165 166 /* Cancel button */167 162 #cancel-button { 168 background-color: #dc3545; /* Red color */163 background-color: #dc3545; 169 164 } 170 165 171 166 #authButton{ 167 position: absolute; 168 left: 1145px; 169 top: 21px; 170 width: 150px; 171 color: white; 172 background-color: red; 173 padding: 10px; 174 border: none; 175 border-radius: 5px; 176 } -
src/main/resources/static/css/calendar.css
r743de55 r43c9090 1 /* Modal background */2 1 #confirmation-modal { 3 display: none; /* Hidden by default */4 position: absolute; /* Fixed positioning to center it on the page */5 z-index: 1000; /* Sit on top */2 display: none; 3 position: absolute; 4 z-index: 1000; 6 5 left: 38%; 7 6 top: 40%; 8 width: 400px; /* Full width */9 overflow: auto; /* Enable scroll if needed */10 background-color: #fff; /* White background for the content */11 border-radius: 8px; /* Rounded corners */12 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */13 text-align: center; /* Center align text */7 width: 400px; 8 overflow: auto; 9 background-color: #fff; 10 border-radius: 8px; 11 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 12 text-align: center; 14 13 } 15 14 .model-content{ … … 24 23 } 25 24 26 /* Buttons */27 25 button { 28 background-color: #3498db; /* Primary button color */26 background-color: #3498db; 29 27 border: none; 30 28 color: #fff; … … 38 36 39 37 button:hover { 40 background-color: #2980b9; /* Darker shade for hover effect */41 transform: scale(1.05); /* Slight scale effect on hover */38 background-color: #2980b9; 39 transform: scale(1.05); 42 40 } 43 41 44 42 button:active { 45 background-color: #1f77e4; /* Even darker shade when active */ 46 } 47 48 /* Cancel button with different color */ 43 background-color: #1f77e4; 44 } 45 49 46 #cancel-booking { 50 background-color: #e74c3c; /* Different color for cancel button */47 background-color: #e74c3c; 51 48 } 52 49 53 50 #cancel-booking:hover { 54 background-color: #c0392b; /* Darker shade for hover effect */51 background-color: #c0392b; 55 52 } 56 53 … … 118 115 #right-side > *{ 119 116 margin:10px; 117 } 118 #right-side{ 119 position: relative; 120 top: 50px; 121 padding: 16px; 122 } 123 #hourly-terms{ 124 display: flex; 125 flex-wrap: wrap; 126 gap: 10px; 127 } 128 #right-side > *{ 129 margin-bottom: 5px; 120 130 } 121 131 … … 176 186 position: relative; 177 187 overflow: hidden; 178 /* transform: scale(1.25); */179 188 } 180 189 … … 232 241 cursor: pointer; 233 242 animation: to-top 1s forwards; 234 /* border-radius: 50%; */235 243 } 236 244 … … 239 247 } 240 248 241 .calendar-days div:hover span {242 transition: width 0.2s ease-in-out, height 0.2s ease-in-out;243 }244 249 245 250 .calendar-days div span:nth-child(1), … … 250 255 } 251 256 252 .calendar-days div:hover span:nth-child(1),253 .calendar-days div:hover span:nth-child(3) {254 height: 100%;255 }256 257 257 .calendar-days div span:nth-child(1) { 258 258 bottom: 0; … … 272 272 } 273 273 274 .calendar-days div:hover span:nth-child(2),275 .calendar-days div:hover span:nth-child(4) {276 width: 100%;277 }278 274 279 275 .calendar-days div span:nth-child(2) { … … 287 283 } 288 284 289 .calendar-days div:hover span:nth-child(2) { 290 transition-delay: 0.2s; 291 } 292 293 .calendar-days div:hover span:nth-child(3) { 294 transition-delay: 0.4s; 295 } 296 297 .calendar-days div:hover span:nth-child(4) { 298 transition-delay: 0.6s; 299 } 300 301 .calendar-days div.curr-date, 302 .calendar-days div.curr-date:hover { 285 .curr-date{ 303 286 background-color: var(--blue); 304 287 color: var(--white); … … 391 374 } 392 375 } 393 394 395 396 376 #authButton{ 377 position: absolute; 378 left: 1145px; 379 top: 21px; 380 width: 150px; 381 color: white; 382 background-color: red; 383 padding: 10px; 384 border: none; 385 border-radius: 5px; 386 } 387 388 389 -
src/main/resources/static/css/index.css
r743de55 r43c9090 66 66 67 67 .dropdown-content { 68 display: none; /* Hide dropdown by default */69 position: absolute; /* Position relative to the list item */68 display: none; 69 position: absolute; 70 70 left: 0; 71 top: 100%; /* Position below the list item */72 background-color: white; /* Background color of the dropdown */73 border: 1px solid #ddd; /* Border of the dropdown */74 padding: 10px; /* Padding inside the dropdown */75 box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional shadow for dropdown */76 width: 100%; /* Full width of the list item */71 top: 100%; 72 background-color: white; 73 border: 1px solid #ddd; 74 padding: 10px; 75 box-shadow: 0 2px 5px rgba(0,0,0,0.1); 76 width: 100%; 77 77 } 78 78 .icon-search{ … … 98 98 justify-content: center; 99 99 height: 350px; 100 /*background-color: #F3F0E7;*/101 100 background-color: #F7F7F5; 102 101 } … … 108 107 .items-register{ 109 108 font-family: "Kumbh Sans", sans-serif; 109 position: absolute; 110 left: 900px; 110 111 } 111 112 .items-register p{ … … 117 118 } 118 119 119 . items-register{120 display: flex;120 .form-imp{ 121 display: flex; 121 122 flex-direction: column; 122 123 align-items: center; 123 /*background-color: #F3F0E7;*/124 }125 126 .form-imp{127 display: flex;128 flex-direction: column;129 align-items: center;130 124 width: auto; 131 125 padding: 10px; 132 126 } 133 127 input , button { 134 border-radius: 5px; /* Adjust the value to make the corners more or less rounded */135 padding: 7px; /* Optional: adds padding inside the input */136 border: 1px solid #9D9D9D; /* Optional: adds a border around the input */128 border-radius: 5px; 129 padding: 7px; 130 border: 1px solid #9D9D9D; 137 131 } 138 132 button{ … … 140 134 color:white; 141 135 } 136 #personalised{ 137 font-size: xx-large; 138 font-family: "Caveat", cursive; 139 } 142 140 .white-part{ 141 display: flex; 142 flex-direction: column; 143 143 background-color: white; 144 144 width: 415px; 145 145 border-radius: 5px; 146 padding: 7px; 146 padding: 20px; 147 } 148 a { 149 text-decoration: none; 150 } 151 .logged-in{ 152 padding: 20px; 153 font-family: "Kumbh Sans", sans-serif; 147 154 } 148 155 .split-title{ … … 179 186 align-items: center; 180 187 background-color: #F7F7F5; 181 /*background-color: #F3F0E7;*/182 188 } 183 189 .part2 > div{ … … 187 193 } 188 194 .part2 > div:first-child { 189 justify-content: flex-end; /* Align the content to the right */195 justify-content: flex-end; 190 196 } 191 197 … … 217 223 background-color: transparent; 218 224 color: darkgreen; 219 border: 2px solid darkgreen; /* Set the border color and make it bold */220 border-radius: 12px; /* Make the borders rounded */221 font-weight: bold; /* Make the text bold */222 padding: 10px 20px; /* Add some padding for better appearance */223 cursor: pointer; /* Change the cursor to a pointer when hovered */224 font-family: "Kumbh Sans", sans-serif; /* Match the font family */225 font-size: 16px; /* Adjust font size as needed */225 border: 2px solid darkgreen; 226 border-radius: 12px; 227 font-weight: bold; 228 padding: 10px 20px; 229 cursor: pointer; 230 font-family: "Kumbh Sans", sans-serif; 231 font-size: 16px; 226 232 } 227 233 … … 248 254 } 249 255 .icons li img:hover { 250 background-color: white; /* Change background color on hover */251 border-color: darkslategrey; /* Change border color on hover */256 background-color: white; 257 border-color: darkslategrey; 252 258 } 253 259 .footer-left p img{ … … 272 278 } 273 279 274 275 /*login*/276 277 280 .popup { 278 display: none; /* Hide the form */279 position: fixed; /* Position it relative to the viewport */280 z-index: 2; /* Ensure it appears above other content */281 display: none; 282 position: fixed; 283 z-index: 2; 281 284 left: 50%; 282 285 top: 50%; 283 transform: translate(-50%, -50%); /* Center it horizontally and vertically */ 284 width: 500px; /* Set a fixed width for the form */ 285 padding: 25px; /* Add some padding */ 286 background-color: white; /* Background color of the form */ 287 box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); /* Add a shadow for better visibility */ 288 border-radius: 10px; /* Slightly round the corners */ 289 } 290 291 /* Style the close button */ 286 transform: translate(-50%, -50%); 287 width: 500px; 288 height: auto; 289 padding: 25px; 290 background-color: white; 291 box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); 292 border-radius: 10px; 293 font-family: "Kumbh Sans", sans-serif; 294 } 295 292 296 .popup .close-btn { 293 297 position: absolute; … … 297 301 cursor: pointer; 298 302 } 299 300 /* Add some basic styling for the form content */ 303 #submit-btn{ 304 width: 120px; 305 background-color: #10B981; 306 } 307 #loginForm > div > h2{ 308 text-align: center; 309 } 310 301 311 .popup-content { 302 display: flex; /* Use flexbox for layout */ 303 flex-direction: column; /* Stack children vertically */ 304 align-items: stretch; /* Ensure all elements take the full width */ 305 text-align: center; /* Center the content */ 312 padding: 20px; 313 width: 100%; 314 display: flex; 315 flex-direction: column; 316 align-items: stretch; 306 317 } 307 318 308 319 .popup-content h2 { 309 margin-bottom: 20px; /* Add some space below the title */320 margin-bottom: 20px; 310 321 } 311 322 312 323 .popup-content label { 313 display: block; /* Make the labels block elements */314 margin-bottom: 10px; /* Add some space below the labels */315 text-align: left; /* Align the text to the left */324 display: block; 325 margin-bottom: 10px; 326 text-align: left; 316 327 } 317 328 318 329 .popup-content input { 319 width: 100%; /* Make the inputs take up the full width */320 padding: 8px; /* Add some padding inside the inputs */321 margin-bottom: 20px; /* Add space below the inputs */322 border: 1px solid #ccc; /* Light border around inputs */323 border-radius: 5px; /* Slightly round the input corners */330 width: 100%; 331 padding: 8px; 332 margin-bottom: 20px; 333 border: 1px solid #ccc; 334 border-radius: 5px; 324 335 } 325 336 326 337 .popup-content button { 327 padding: 10px 20px; /* Add padding to the button */328 background-color: #007BFF; /* Button background color */329 color: white; /* Button text color */330 border: none; /* Remove the default border */331 border-radius: 5px; /* Round the button corners */332 cursor: pointer; /* Add a pointer cursor on hover */338 padding: 10px 20px; 339 background-color: #007BFF; 340 color: white; 341 border: none; 342 border-radius: 5px; 343 cursor: pointer; 333 344 } 334 345 335 346 .popup-content button:hover { 336 background-color: #0056b3; /* Darken the button on hover */347 background-color: #0056b3; 337 348 } 338 349 body.no-scroll { … … 340 351 } 341 352 .dataForms{ 342 display: flex; /* Use flexbox for layout */ 343 flex-direction: column; /* Stack children vertically */ 344 align-items: stretch; /* Ensure all elements take the full width */ 345 text-align: center; /* Center the content */ 346 } 353 display: flex; 354 flex-direction: column; 355 align-items: stretch; 356 text-align: center; 357 358 } 359 #links{ 360 padding: 10px; 361 display: flex; 362 flex-direction: column; 363 gap: 5px; 364 color: darkgreen; 365 } 366 .logged-in{ 367 position: absolute; 368 left: 900px; 369 padding: 30px; 370 } 371 a img{ 372 transform: rotate(-90deg); 373 height: 20px; 374 margin-right: 10px; 375 } 376 #signInForm{ 377 height: 500px; 378 width: 700px; 379 } 380 #signInForm > div > form{ 381 display: grid; 382 grid-template-columns: repeat(2, 1fr); 383 grid-template-rows: repeat(3, 1fr); 384 gap: 10px; 385 } 386 #authButton{ 387 position: absolute; 388 left: 1145px; 389 top: 21px; 390 width: 150px; 391 color: white; 392 background-color: red; 393 padding: 10px; 394 border: none; 395 border-radius: 5px; 396 } 397 398 #create{ 399 width: 200px; 400 padding: 15px; 401 background-color: #10B981; 402 position: absolute; 403 top: 80%; 404 left: 50%; 405 transform: translate(-50%, -50%); 406 margin-top: 20px; 407 } -
src/main/resources/static/css/terms.css
r743de55 r43c9090 4 4 body{ 5 5 font-family: var(--font-family); 6 background-color: #f3f8fe; 6 7 } 7 #outer-frame{ 8 background-color: #f3f8fe; 9 width: 100%; 10 height: 100vh; 11 } 8 12 9 #header{ 13 10 display: flex; … … 16 13 #menu{ 17 14 display: flex; 15 gap: 10px; 18 16 } 19 17 #menu *{ 20 padding: 8px; 18 padding: 10px; 19 background-color: #17a2b8; 20 border: 0; 21 border-radius: 5px; 22 color: white; 21 23 } 22 24 table td, … … 24 26 padding: 10px; 25 27 } 26 table{ 27 /*margin: 0 auto;*/ 28 width: 920px; 29 } 28 30 29 31 30 #popup { … … 67 66 color: #fff; 68 67 } 68 69 table{ 70 border-collapse: collapse; 71 table-layout: fixed; 72 width: max-content; 73 } 74 75 th, td { 76 width: fit-content; 77 text-align: center; 78 border: 1px solid #ddd; 79 padding: 12px; 80 } 81 82 th { 83 background-color: lightslategray; 84 color: #fff; 85 86 } 87 #frame{ 88 display: flex; 89 flex-direction: column; 90 gap: 10px; 91 } 92 #requestsTableBody{ 93 background-color: #eeeded; 94 } 95 #authButton{ 96 position: absolute; 97 left: 1145px; 98 top: 21px; 99 width: 150px; 100 color: white; 101 background-color: red; 102 padding: 10px; 103 border: none; 104 border-radius: 5px; 105 } -
src/main/resources/static/css/users-view.css
r743de55 r43c9090 1 /* General reset */ 1 2 2 * { 3 3 margin: 0; … … 6 6 } 7 7 8 /* Styling for the entire page */9 8 body { 10 9 font-family: Arial, sans-serif; … … 20 19 } 21 20 22 /* Frame that contains the whole content */23 21 #frame { 24 22 width: 80%; … … 30 28 } 31 29 32 /* Header section */33 30 #header-part { 34 31 display: flex; … … 39 36 } 40 37 41 /* Dropdown and labels styling */42 38 label { 43 39 font-weight: bold; … … 60 56 } 61 57 62 /* Main part: the table */63 58 #main-part { 64 59 margin-top: 20px; … … 96 91 } 97 92 98 /* For responsiveness */99 93 @media (max-width: 768px) { 100 94 #header-part { … … 111 105 display: none; 112 106 } 113 /*.news-item{*/ 114 /* display: flex; !* Aligns image and text in a row *!*/ 115 /* !*flex-direction: column; !* Change to 'row' for horizontal layout *!*!*/ 116 /* width: 300px;*/ 117 /* align-items: center;*/ 118 /* justify-content: center;*/ 119 /* max-width: 800px; !* Limit max width to prevent stretching *!*/ 120 /* margin: 0 auto; !* Centers the container *!*/ 121 /* padding: 20px;*/ 122 /* border: 1px solid #ddd; !* Optional: Adds a border *!*/ 123 /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/ 124 /*}*/ 125 /*img{*/ 126 /* width: 100%; !* Make image responsive *!*/ 127 /* max-width: 400px; !* Set a maximum width for the image *!*/ 128 /* height: auto; !* Maintain aspect ratio *!*/ 129 /* border-radius: 10px; !* Optional: Adds rounded corners *!*/ 130 /* margin-bottom: 15px;*/ 131 /*}*/ 132 /*p{*/ 133 /* font-size: 1.2rem;*/ 134 /* line-height: 1.5;*/ 135 /* text-align: center; !* Center the text *!*/ 136 /* color: #333;*/ 137 /* margin: 0;*/ 138 /*}*/ 139 /*@media (max-width: 768px) {*/ 140 /* .news-item {*/ 141 /* flex-direction: column; !* Stack elements on smaller screens *!*/ 142 /* }*/ 143 /*}*/ 107 button{ 108 padding: 5px; 109 } 110 #authButton{ 111 position: absolute; 112 left: 1280px; 113 top: 21px; 114 width: 127px; 115 color: white; 116 background-color: red; 117 padding: 10px; 118 border: none; 119 border-radius: 5px; 120 }
Note:
See TracChangeset
for help on using the changeset viewer.