Changeset 43c9090 for src/main/resources/static/css/admin.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/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 }
Note:
See TracChangeset
for help on using the changeset viewer.