source: src/main/resources/static/css/admin.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.3 KB
Line 
1body{
2 margin: 0;
3 font-family: "Caveat", cursive;
4 font-optical-sizing: auto;
5 font-weight: normal;
6}
7
8h1{
9 font-size: 60px;
10 font-weight: 500;
11 position: relative;
12 left: 140px;
13 margin:0;
14}
15
16img{
17 height: 50px;
18}
19#frame{
20 position: absolute;
21 left: 680px;
22 top:70px;
23 width: 700px;
24 display: flex;
25 flex-direction: column;
26 justify-content: center;
27 align-items: center;
28}
29#second-image{
30 position: absolute;
31 left: 100px;
32 top: 50px;
33 height: 500px;
34 z-index: -1;
35
36}
37#menu{
38 width: 600px;
39 height: 300px;
40 background-color: #f3f8ff;
41 padding: 30px;
42 display: grid;
43
44 grid-template-columns: repeat(2, 1fr);
45 gap: 20px;
46}
47#menu a {
48 display: flex;
49 flex-direction: column;
50 align-items: center;
51 justify-content: center;
52 text-decoration: none;
53 padding: 15px;
54 border: 1px solid #ccc;
55 border-radius: 5px;
56 font-size: 30px; ;
57}
58#menu a:hover {
59 background-color: white;
60 transition: background-color 0.3s ease;
61 border: 1px solid black;
62}
63
64#menu img {
65 max-width: 50px;
66 margin-bottom: 5px;
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 TracBrowser for help on using the repository browser.