-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
181 lines (144 loc) · 2.84 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/* Reset some default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Set the main body styles */
body {
background-image: url("./Asseta/travel_map_compass_123078_1920x1080.jpg");
background-repeat: round;
font-family: Arial, sans-serif;
line-height: 1.6;
backdrop-filter: blur(3px);
}
/* Navigation styles */
nav {
background-color: #094a66;
color: white;
display: flex;
align-items: center;
padding: 10px 20px;
}
nav img {
margin-right: 15px;
}
nav figcaption {
font-size: 22px;
font-family: serif;
margin-right: auto;
text-decoration: bold;
text-transform: capitalize;
color:burlywood
}
nav ul {
list-style: none;
display: flex;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
color: white;
text-decoration: none;
font-size: 18px;
}
nav ul li a:hover {
text-decoration: underline;
text-decoration-line:overline ;
text-decoration-color: turquoise;
}
/* Search input and button styles */
nav input[type="text"] {
padding: 5px;
border-width: 2px;
border-radius: 30px;
border-color: wheat;
background: transparent;
flex: auto;
}
nav button {
padding: 6px 10px;
border: none;
border-radius: 3px;
background-color: #555555;
color: rgb(14, 142, 255) ;
cursor: pointer;
}
nav button:hover {
background-color: rgb(14, 142, 255);
text-shadow:slateblue;
color:grey;
text-decoration-style: double;
}
/* Header styles */
header {
justify-content: left;
background: transparent;
}
/*header .social.media {
}*/
/* Main section styles */
main {
text-align: center;
padding: 50px 20px;
}
main h1 {
font-size: 48px;
margin-bottom: 20px;
color: #cc6778;
}
main p {
font-size: 20px;
color:rgb(20, 92, 82);
backface-visibility:;
}
/* Footer styles */
footer {
background-color: #333;
color: white;
text-align: center;
padding: 20px 0;
position: relative;
}
.result
{
align-items: right;
}
.team-structure {
text-align: center;
background-image: url('path/to/your/map.jpg'); /* Replace with your map image */
background-size: cover;
background-position: center;
padding: 20px;
}
.team-member {
display: flex;
flex-direction: column;
align-items: center;
background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
border-radius: 10px;
padding: 20px;
margin: 20px;
}
.name, .role {
font-weight: bold;
}
.connection {
border-bottom: 1px solid #ccc;
margin-bottom: 10px;
}
.subteam {
margin-left: 20px;
}
.recommendation-container {
border: 1px solid #ccc;
padding: 10px;
text-align: center;
display: inline-block;
margin: 10px;
}
.recommendation-container img {
max-width: 200px;
height: auto;
}