-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
117 lines (98 loc) · 2.16 KB
/
style.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
:root {
--primary-color: #212A3E; /* Dark blue */
--secondary-color: #394867; /* Medium blue */
--tertiary-color: #9BA4B5; /* Grey */
--background-color: #F1F6F9; /* Light grey/white */
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
background-color: var(--background-color);
}
#chartdiv {
width: 50%; /* Reduced from 100% */
max-width: 1000px; /* Add maximum width */
height: 600px;
margin: 0 auto; /* Center the chart container */
border-radius: 8px;
background-color: white;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
padding: 20px; /* Add some padding */
}
.card {
border: none;
border-radius: 10px;
background-color: white;
transition: transform 0.2s ease-in-out;
}
.card:hover {
transform: translateY(-5px);
}
.navbar {
background-color: var(--primary-color);
}
.navbar-brand {
font-weight: 600;
color: white !important;
}
.info-alert {
background-color: var(--tertiary-color);
border: none;
color: var(--primary-color);
border-radius: 8px;
}
.card-title {
color: var(--primary-color);
}
.footer {
margin-top: auto;
background-color: var(--secondary-color);
color: white;
padding: 1rem 0;
}
.linkedin-link {
color: var(--background-color);
text-decoration: none;
transition: color 0.2s ease;
}
.linkedin-link:hover {
color: var(--tertiary-color);
}
.linkedin-link i {
margin-right: 8px;
font-size: 1.2em;
}
/* Responsive adjustments */
@media (max-width: 768px) {
#chartdiv {
height: 400px;
}
.container {
padding: 0 15px;
}
.footer .col-md-6 {
text-align: center !important;
margin: 5px 0;
}
}
/* Additional styling for content */
.card-text {
color: var(--secondary-color);
line-height: 1.6;
}
ul.card-text {
padding-left: 20px;
}
ul.card-text li {
margin-bottom: 8px;
color: var(--secondary-color);
}
.chart-container {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
}