source: src/main/resources/static/css/users-view.css@ 43c9090

Last change on this file since 43c9090 was 43c9090, checked in by macagaso <gasoskamarija@…>, 5 weeks ago

Updated version

  • Property mode set to 100644
File size: 1.8 KB
Line 
1
2* {
3 margin: 0;
4 padding: 0;
5 box-sizing: border-box;
6}
7
8body {
9 font-family: Arial, sans-serif;
10 background-color: #f4f4f9;
11 color: #333;
12 line-height: 1.6;
13 padding: 20px;
14}
15h2{
16 font-size: 20px;
17 display: block;
18 width: 60%;
19}
20
21#frame {
22 width: 80%;
23 margin: 0 auto;
24 background-color: #fff;
25 border-radius: 10px;
26 box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
27 padding: 20px;
28}
29
30#header-part {
31 display: flex;
32 justify-content: space-between;
33 align-items: center;
34 padding-bottom: 20px;
35 border-bottom: 1px solid #ccc;
36}
37
38label {
39 font-weight: bold;
40 margin-right: 10px;
41 font-size: 14px;
42}
43
44select {
45 padding: 8px 12px;
46 border-radius: 5px;
47 border: 1px solid #ccc;
48 font-size: 14px;
49 cursor: pointer;
50 background-color: #fff;
51 transition: all 0.3s;
52}
53
54select:hover {
55 border-color: #007bff;
56}
57
58#main-part {
59 margin-top: 20px;
60}
61
62#users-table {
63 width: 100%;
64 border-collapse: collapse;
65 table-layout: fixed;
66}
67
68#users-table th, #users-table td {
69 text-align: center;
70 border: 1px solid #ddd;
71 padding: 12px;
72}
73
74#users-table th {
75 background-color: #007bff;
76 color: #fff;
77 font-weight: bold;
78
79}
80
81#users-table td {
82 background-color: #f9f9f9;
83}
84
85#users-table tr:nth-child(even) td {
86 background-color: #f1f1f1;
87}
88
89#users-table tr:hover td {
90 background-color: #e9ecef;
91}
92
93@media (max-width: 768px) {
94 #header-part {
95 flex-direction: column;
96 align-items: flex-start;
97 }
98
99 select {
100 width: 100%;
101 margin-top: 10px;
102 }
103}
104#search-input-container {
105 display: none;
106}
107button{
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 TracBrowser for help on using the repository browser.