-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
80 lines (64 loc) · 1.17 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
body {
font-family: 'Arial', sans-serif;
}
.navbar-brand img.no-pipe-icon {
width: 40px; /* Adjust size as needed */
height: auto;
}
.navbar-light .navbar-nav .nav-link {
color: #333333;
}
.news-ticker {
background-color: #e9ecef;
padding: 10px 0;
font-size: 1rem;
color: #333333;
}
.hero-section {
display: flex;
align-items: center;
justify-content: space-between;
background-color: #f8f9fa;
padding: 60px 0;
}
.hero-image {
max-width: 50%;
height: auto;
}
.themed-separator {
height: 5px;
background-color: rgba(51, 51, 51, 0.5);
margin: 20px 0;
}
.flag-background {
padding: 20px 0;
background: rgba(255, 255, 255, 0.5);
text-align: center;
}
.card {
border: none;
transition: transform 0.3s ease;
}
.card:hover {
transform: scale(1.05);
}
h1, h2, h3, h4 {
font-family: 'Helvetica', sans-serif;
}
.container h2 {
margin-top: 30px;
}
.btn-primary {
background-color: #0056b3;
border-color: #0056b3;
}
.btn-primary:hover {
background-color: #004494;
border-color: #004494;
}
.footer {
background-color: #f8f9fa;
}
.footer .text-muted {
color: #6c757d;
}