source: src/main/resources/static/style.css

Last change on this file was a51a591, checked in by colovik <j.colovik@…>, 14 months ago

final

  • Property mode set to 100644
File size: 3.1 KB
Line 
1.navbar{
2 background: darkkhaki;
3}
4span{
5 color: #b2d7ff;
6 text-decoration: none;
7 background: transparent;
8}
9ul{
10 text-align: justify;
11 margin-left: 50px;
12 margin-right: 50px;
13
14}
15body{
16 background-image: url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=869&q=80");
17 background-size: 100%;
18 background-repeat: no-repeat;
19 background-position: center top -150px; /* Adjust the background position to move the image up */ }
20.navbar-brand{
21 color:yellow;
22}
23.nav-link{
24 color: yellow;
25}
26footer{
27 position: absolute;
28 bottom: 0;
29 left: 0;
30 right: 0;
31 background: #111;
32 height: auto;
33 width: 100vw;
34 padding-top: 40px;
35 color: #fff;
36}
37.footer-content{
38 display: flex;
39 align-items: center;
40 justify-content: center;
41 flex-direction: column;
42 text-align: center;
43 height: 80px;
44}
45.footer-content h3{
46 font-size: 2.1rem;
47 font-weight: 500;
48 text-transform: capitalize;
49 line-height: 3rem;
50 margin-top: 20px;
51}
52.footer-content p{
53 max-width: 500px;
54 margin: 10px auto;
55 line-height: 28px;
56 font-size: 14px;
57 color: #cacdd2;
58}
59.socials{
60 list-style: none;
61 display: flex;
62 align-items: center;
63 justify-content: center;
64 margin: 1rem 0 3rem 0;
65}
66.socials li{
67 margin: 0 10px;
68}
69.socials a{
70 text-decoration: none;
71 color: #fff;
72 border: 1.1px solid white;
73 padding: 5px;
74 border-radius: 50%;
75}
76.socials a i{
77 font-size: 1.1rem;
78 width: 20px;
79 transition: color .4s ease;
80}
81.socials a:hover i{
82 color: aqua;
83}
84.footer-bottom p{
85 float: left;
86 font-size: 14px;
87 word-spacing: 2px;
88 text-transform: capitalize;
89}
90.footer-bottom p a{
91 color:#44bae8;
92 font-size: 16px;
93 text-decoration: none;
94}
95.footer-bottom span{
96 text-transform: uppercase;
97 opacity: .4;
98 font-weight: 200;
99}
100.footer-menu ul{
101 display: flex;
102}
103.footer-menu ul li{
104 padding-right: 10px;
105 display: block;
106}
107.footer-menu ul li a{
108 color: #cfd2d6;
109 text-decoration: none;
110}
111.footer-menu ul li a:hover{
112 color: #27bcda;
113}
114@media (max-width:500px) {
115 .footer-menu ul{
116 display: flex;
117 margin-top: 10px;
118 margin-bottom: 20px;
119 }
120}
121.kopce{
122 background-color: mediumslateblue;
123 border: none;
124 color: white;
125 padding: 15px 32px;
126 text-align: center;
127 text-decoration: none;
128 display: inline-block;
129 font-size: 16px;
130 margin-left: 20px;
131}
132/*#logo{*/
133/* width:160px;*/
134/* height: 60px*/
135/*}*/
136h1{
137 color: black;
138 font-size: 60px;
139 font-weight: 700;
140 letter-spacing: 8px;
141 margin-bottom: 20px;
142 margin-left:auto;
143 margin-right:auto;
144 margin-top:50px;
145 position: relative;
146 animation: text 3s 1;
147}
148@keyframes text {
149 0%{
150 color: black;
151 margin-bottom: -40px;
152 }
153 30%{
154 letter-spacing: 25px;
155 margin-bottom: -40px;
156 }
157 85%{
158 letter-spacing: 8px;
159 margin-bottom: -40px;
160 }
161}
162footer{
163 width: 100%;
164 padding: 20px;
165 box-sizing: border-box;
166}
Note: See TracBrowser for help on using the repository browser.