-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
110 lines (95 loc) · 2.25 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
/* Reset & General Styling */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
height: 100vh;
}
/* Main Layout */
#map-container {
display: flex;
height: 100vh;
overflow: hidden;
}
/* Ensure Map is Visible */
#map {
flex-grow: 1;
height: 100%;
}
/* Sidebar */
#sidebar {
width: 25%;
min-width: 250px;
max-width: 350px;
background-color: #f4f4f4;
overflow-y: auto;
padding: 20px;
}
/* Ferris Logo Styling */
#ferris-logo {
position: absolute;
top: 10px;
left: 10px;
z-index: 1000; /* Ensures it's above everything */
background-color: rgba(255, 255, 255, 0.8); /* Optional: Background for visibility */
padding: 5px;
border-radius: 5px;
}
#ferris-logo img {
width: 50px; /* Adjust size as needed */
height: auto;
transition: transform 0.2s ease-in-out;
}
/* Optional: Add hover effect */
#ferris-logo img:hover {
transform: scale(1.1);
}
/* Community List & Details */
.community-details {
padding: 10px;
background-color: #f4f4f4;
border: 1px solid #f4f4f4;
margin-top: 5px;
border-radius: 5px;
}
.community-box {
border: 2px solid #000; /* Black border */
padding: 10px;
background-color: #f4f4f4; /* White background */
width: 90%; /* Adjust width as needed */
margin-top: 5px;
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2); /* Slight shadow effect */
border-radius: 5px; /* Rounded corners */
}
.community-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 5px;
text-decoration: none; /* Prevent underlining */
}
.community-description {
font-size: 14px;
margin-bottom: 10px;
text-decoration: none; /* Prevent underlining */
}
.community-link {
display: inline-block;
font-size: 14px;
font-weight: bold;
color: #ff5900; /* Blue link color */
text-decoration: none; /* Remove default underline */
}
.community-link:hover {
text-decoration: underline; /* Underline only on hover */
}
.continent-section {
margin-bottom: 15px; /* Adds space below each continent section */
}
.continent-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 5px; /* Adds space between the continent title and the community names */
}