Changeset 693f587
- Timestamp:
- 02/04/23 21:01:16 (22 months ago)
- Branches:
- master
- Children:
- a073dad
- Parents:
- 302b233 (diff), ade54f6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/fragments/header.html
r302b233 r693f587 5 5 <title>Title</title> 6 6 </head> 7 <style> 8 @import url("https://fonts.googleapis.com/css?family=Varela+Round"); 9 html { 10 box-sizing: border-box; 11 } 12 13 *, 14 *:before, 15 *:after { 16 box-sizing: inherit; 17 padding: 0; 18 margin: 0; 19 letter-spacing: 1.1px; 20 } 21 22 body, 23 html { 24 25 height: 10%; 26 background: #1c1d22; 27 font-family: "Varela Round", sans-serif; 28 } 29 30 .menu { 31 width: 100%; 32 display: flex; 33 justify-content: space-between; 34 /*height: 100vh;*/ 35 36 } 37 38 .menu ul li{ 39 width: 150px; 40 height: 50px; 41 transition: background-position-x 0.9s linear; 42 text-align: center; 43 list-style: none; 44 } 45 .menu ul li a { 46 font-size: 22px; 47 color: #777; 48 text-decoration: none; 49 transition: all 0.45s; 50 } 51 .menu-left{ 52 display: flex; 53 } 54 .menu-right{ 55 display: flex; 56 } 57 58 </style> 7 59 <body> 8 60 <nav class="menu"> 61 <ul class="menu-left"> 62 <li class="begin"><a href="#!">MovieZone</a></li> 63 <li class="begin"><a href="#!">Филмови</a></li> 64 <li class="begin"><a href="#!">Програма</a></li> 65 <li class="begin"><a href="#!">Настани</a></li> 66 <li class="begin"><a href="#!">Faq</a></li> 67 </ul> 68 <ul class="menu-right"> 69 <li class="reg"><a href="#!">Најава</a></li> 70 <li class="reg"><a href="#!">Регистрација</a></li> 71 </ul> 72 </nav> 9 73 </body> 10 74 </html>
Note:
See TracChangeset
for help on using the changeset viewer.