-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
116 lines (97 loc) · 1.83 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
.img {
border: solid;
border-color: black;
border-width: 5px;
margin-left: auto;
margin-right: auto;
display:block;
width: 70%;
height: auto;
user-select: none;
padding: 0;
background-color:whitesmoke;
}
br{
user-select: none;
}
p{
font-family: Calibri;
font-size: medium;
color: midnightblue;
}
.map-container {
display: flex;
position: relative; /* Needed for absolute positioning of landmarks */
}
.landmarks {
position: absolute; /* This can be removed if using flexbox for alignment */
top: 0;
left: 0;
display: flex; /* Activate flexbox for child elements */
width: 100%; /* Ensures landmarks scale with the container */
height: 100%;
justify-content: space-between;
}
.city {
width: 10px; /* Size of the dot */
height: 10px;
border-radius: 50%;
background-color: red;
flex-grow: 0;
justify-self: flex-start;
align-self: flex-start;
}
.kathmandu {
margin-top: 26%;
margin-left:60%;
}
.lumbini {
margin-top: 25%;
margin-left:40%;
}
.chitwan{
margin-top: 30%;
margin-left:40%;
}
.linejasto{
display: flex;
position:absolute;
width:100% ;
height: 50px;
background-color: #B6B6B6;
padding: 8px;
color: white;
font-family: Helvetica;
margin:-10px -10px;
text-align:center;
}
body{
overflow: hidden;
background-color: #110D11;
}
.Headtext{
text-align: center;
font-size: large;
color: azure;
padding-top: 15px;
border:solid black;
border-spacing: 5px;
background-color: black;
padding-left: 3px;
padding-right:3px;
padding-top:10px ;
border-radius: 12%;
}
.input-style {
padding: 10px;
border: 2px solid #ccc;
border-radius: 5px;
font-size: 16px;
color: #555;
outline: none;
margin-left: 5;
}
.input-style:focus {
border-color: #007bff;
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}