Changeset 43c9090 for src/main/resources/static/css/users-view.css
- Timestamp:
- 10/12/24 21:32:15 (5 weeks ago)
- Branches:
- master
- Parents:
- 743de55
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.