source: src/main/resources/static/css/terms.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.6 KB
Line 
1:root {
2 --font-family: cursive;
3}
4body{
5 font-family: var(--font-family);
6 background-color: #f3f8fe;
7}
8
9#header{
10 display: flex;
11 justify-content: space-between;
12}
13#menu{
14 display: flex;
15 gap: 10px;
16}
17#menu *{
18 padding: 10px;
19 background-color: #17a2b8;
20 border: 0;
21 border-radius: 5px;
22 color: white;
23}
24table td,
25table th {
26 padding: 10px;
27}
28
29
30#popup {
31 position: fixed;
32 top: 0;
33 left: 0;
34 width: 100%;
35 height: 100%;
36 background-color: rgba(0, 0, 0, 0.5);
37 display: flex;
38 justify-content: center;
39 align-items: center;
40 z-index: 1000;
41}
42
43#dialogPopUp {
44 background-color: #fff;
45 padding: 20px;
46 border-radius: 8px;
47 box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
48 width: 300px;
49 text-align: center;
50}
51
52.btn {
53 padding: 10px 15px;
54 border: none;
55 border-radius: 5px;
56 cursor: pointer;
57}
58
59.btn-danger {
60 background-color: #dc3545;
61 color: #fff;
62}
63
64.btn-secondary {
65 background-color: #6c757d;
66 color: #fff;
67}
68
69table{
70 border-collapse: collapse;
71 table-layout: fixed;
72 width: max-content;
73}
74
75th, td {
76 width: fit-content;
77 text-align: center;
78 border: 1px solid #ddd;
79 padding: 12px;
80}
81
82th {
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}
Note: See TracBrowser for help on using the repository browser.