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

Last change on this file since d3cf3a1 was d3cf3a1, checked in by Marija Micevska <marija_micevska@…>, 2 years ago

Initial commit

  • Property mode set to 100644
File size: 3.1 KB
Line 
1@import url('https://fonts.googleapis.com/css2?family=Arapey&family=Cormorant+Unicase:wght@600&family=Playfair+Display+SC:ital,wght@0,400;1,700&family=Underdog&display=swap');
2
3* {
4 margin: 0;
5 padding: 0;
6 font-family: 'Playfair Display SC', serif;
7 font-weight: bold;
8}
9
10.nav-bar {
11 position: sticky;
12 top: 0;
13 z-index: 10;
14}
15
16.navbar {
17 background: linear-gradient(to right, #93A3CE, #1C294E);
18 padding: 0 !important;
19}
20
21.navbar-brand img {
22 width: 115px;
23 height: 43px;
24 padding-left: 20px;
25}
26
27.navbar-nav li {
28 padding: 0 10px;
29}
30
31.navbar-nav li a {
32 color: #93A3CE !important;
33 font-weight: 600;
34 float: right;
35 text-align: left;
36}
37
38.fa-bars {
39 color: #93A3CE;
40 font-size: 20px !important;
41}
42
43.navbar-toggler {
44 outline: none !important;
45}
46
47#banner {
48 background: linear-gradient(to right, #93A3CE, #1C294E);
49 color: white;
50 padding-top: 5%;
51}
52
53.promo-title {
54 font-size: 50px;
55 font-weight: 600;
56 margin-top: 100px;
57
58}
59
60table {
61 border: none;
62}
63
64
65input[type=radio] {
66 color: #ffcc00;
67
68}
69
70.list-items li::before {
71 content: "•";
72 color: #ffcc00;
73 display: inline-block;
74 width: 1em;
75 margin-left: -1em;
76}
77
78
79ul {
80 list-style: none;
81}
82
83
84.bottom-img {
85 width: 100%;
86}
87
88#services {
89 padding: 80px 0;
90}
91
92.services-img {
93 width: 100px;
94 margin-top: 20px;
95}
96
97.services {
98 padding: 20px;
99}
100
101.services h4 {
102 padding: 5px;
103 margin-top: 20px;
104 text-transform: uppercase;
105}
106
107.title::before {
108 content: '';
109 background-color: #000029;
110 height: 5px;
111 width: 200px;
112 margin-left: auto;
113 margin-right: auto;
114 display: block;
115 transform: translateY(63px);
116}
117
118#about-us {
119 background: #f8f9fa;
120 padding-bottom: 50px;
121 padding-top: 50px;
122}
123
124.about-title {
125 font-size: 40px;
126 font-weight: 600;
127 margin-top: 8%;
128}
129
130.title {
131 font-weight: bold;
132}
133
134#about-us ul li {
135 margin: 10px 0;
136}
137
138#about-us ul {
139 margin-left: 40px;
140}
141
142#footer {
143 background: linear-gradient(to right, #93A3CE, #1C294E);
144 color: #fff;
145}
146
147.footer-img {
148 width: 100%;
149 transform: rotate(180deg);
150 position: relative;
151 top: -30px;
152}
153
154.footer-box {
155
156 padding: 20px;
157}
158
159.footer-box img {
160 width: 120px;
161 margin-bottom: 20px;
162}
163
164.reg {
165 text-decoration: none;
166 color: floralwhite;
167 font-size: 20px;
168}
169
170.nav-link:hover, .nav-item:hover {
171 color: #ffcc00;
172}
173
174.log {
175 text-decoration: none;
176 color: floralwhite;
177 font-size: 30px;
178}
179
180.btn1 {
181 border: none;
182 outline: none;
183 height: 50px;
184 width: 100%;
185 background: linear-gradient(to right, #93A3CE, #1C294E);
186 color: white;
187 border-radius: 4px;
188 font-weight: bold;
189}
190
191.btn1:hover {
192 background: linear-gradient(to right, white, #93A3CE);
193 border: 1px #1C294E;
194 color: #1C294E;
195}
196
197.google {
198 color: #1C294E;
199 font-size: 17px;
200}
201
202.list-items {
203 font-size: 25px;
204}
205
206input.transparent-input {
207 background: transparent;
208
209}
210
211.no-gutters {
212 background: floralwhite;
213 border-radius: 5px;
214 box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
215}
216
217.container{
218 display: block;
219}
Note: See TracBrowser for help on using the repository browser.