source: target/classes/templates/index.ftl@ 74af394

Last change on this file since 74af394 was 74af394, checked in by makyjovanovsky <mjovanovski04@…>, 17 months ago

login/register with mail confirmation

  • Property mode set to 100644
File size: 4.0 KB
Line 
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <title>Salon Bella</title>
6 <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.2/css/fontawesome.min.css" integrity="sha384-X8QTME3FCg1DLb58++lPvsjbQoCT9bp3MsUU3grbIny/3ZwUJkRNO8NPW6zqzuW9" crossorigin="anonymous">
7 <style>
8 * {
9 margin: 0;
10 padding: 0;
11 box-sizing: border-box;
12 font-family: "Abel", sans-serif;
13 font-size: 10px;
14 scroll-behavior: smooth;
15 }
16 .wrapper {
17 width: auto;
18 height: 100vh;
19 background-image: linear-gradient( rgba(10, 20, 30, 40.5), rgba(50, 0, 20, 0.5)), url("https://i.ibb.co/jk8FCT0/background.jpg");
20 background-position: center;
21 background-size: cover;
22 background-repeat: no-repeat;
23 backdrop-filter: opacity(80%);
24 }
25 .Container {
26 width: 100%;
27 height: 100%;
28 display: flex;
29 justify-content: center;
30 align-items: center;
31 }
32 .nav {
33 position: fixed;
34 top: 0;
35 left: 0;
36 width: 100%;
37 height: 80px;
38 border-bottom: 1px solid rgba(255, 255, 255, 0.521);
39 display: flex;
40 justify-content: space-between;
41 align-items: center;
42 padding: 0 50px;
43 }
44 .logo {
45 font-family: "Abel", sans-serif;
46 font-size: 2.5rem;
47 font-weight: 600;
48 letter-spacing: 0.7rem;
49 color: white;
50 margin: 4%;
51 }
52 .menu {
53 display: inline-block;
54 line-height: 80px;
55 }
56 .menu ul {
57 list-style: none;
58 /* display: flex;
59 flex-direction: row;
60 justify-content: center;
61 align-items: center; */
62 }
63 .menu ul li {
64 display: inline-block;
65 }
66 .menu ul li a {
67 text-decoration: none;
68 font-family: cursive;
69 font-size: 1.2rem;
70 font-weight: 600;
71 letter-spacing: 0.1rem;
72 color: white;
73 border: 1px solid transparent;
74 border-radius: 4px;
75 padding: 10px 15px;
76 margin: 0 5px;
77 transition: 0.5s ease;
78 }
79 .menu ul li a:hover {
80 border-color: white;
81 }
82 .menu ul li:nth-child(5) a {
83 color: #fff200;
84 border: 1px solid #fff200;
85 }
86 .menu ul li:nth-child(5) a:hover {
87 color: black;
88 background-color: #fff200;
89 }
90 .header {
91 text-align: center;
92
93 }
94 .header h1 {
95 font-family: cursive;
96 font-size: 4rem;
97 font-weight: 600;
98 letter-spacing: 0.2rem;
99 color: white;
100 padding: 45% 20px 8px;
101 }
102 .header p {
103 font-family: cursive;
104 font-size: 1.5rem;
105 font-weight: 600;
106 letter-spacing: 0.2rem;
107 color: white;
108 padding: 10px 15px;
109 }
110 button {
111 font-size: 1.5rem;
112 font-weight: 600;
113 letter-spacing: 0.15rem;
114 color: black;
115 background-color: #fff200;
116 padding: 20px 30px;
117 margin: 50px 5px 0;
118 border: none;
119 cursor: pointer;
120 }
121
122 </style>
123</head>
124<body>
125<div class="wrapper" >
126 <div class="Container">
127 <div class="nav">
128 <div class="logo">
129 B
130 </div>
131 <div class="menu">
132 <ul class="navMenu">
133 <li><a href="/login">Login</a></li>
134 <li><a href="/register">Register</a></li>
135 </ul>
136 </div>
137 </div>
138 <div class="header">
139 <h1>Beauty Salon Bella</h1>
140 <p>Kumanovo,North Macedonia</p>
141 </div>
142 </div>
143</div>
144</body>
145</html>
Note: See TracBrowser for help on using the repository browser.