File size: 1,377 Bytes
1e932e0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* styles.css */

/* Header styles */
body {
    background-image: url('{% static "satellite_image.png" %}');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

/* Navbar Styles */
.navbar {
    background-color: #333;
}

.navbar a {
    color: #fff;
    text-decoration: none;
}

/* Sidebar Styles */
.sidebar {
    background-color: #f8f9fa;
}

/* Main Content Styles */
.main-content {
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    padding: 20px;
    border-radius: 10px;
}

/* Additional Content Styles */
.additional-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}

/* Form Styles */
.form-control {
    margin-bottom: 15px;
}

/* Button Styles */
.btn-primary {
    background-color: #007BFF;
    color: #fff;
}

/* Header Styles */
.header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Map Container Styles */
#map-container {
    width: 100%;
    height: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* About Section Styles */
#about {
    background-color: #f9f9f9;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
}


/* Add more CSS styles as needed */