-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
91 lines (88 loc) · 2.05 KB
/
styles.scss
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
* {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
box-sizing: border-box;
margin: 0;
transition: background-color 0.5s;
}
#main {
display: flex;
flex-direction: column;
height: 100vh;
padding: 20px;
h1 {
margin-bottom: 20px;
cursor: pointer;
transition: color 0.2s;
&:hover {
color: rgb(172, 172, 172);
}
}
#result {
margin-top: 20px;
p {
height: 20px;
margin: 10px 10px;
}
img {
height: 50px;
margin: -20px 0;
filter: drop-shadow(0px 0px 3px #808080);
}
.pre-city {
font-weight: bold;
color: #cfcfcf;
cursor: pointer;
max-width: max-content;
transition: color 0.3s;
&:hover {
color: #FFF;
}
}
.map-link {
background-color: rgb(134, 106, 211);
border-radius: 5px;
margin-top: 20px;
cursor: pointer;
a {
padding: 20px;
display: flex;
flex: 1;
color: rgb(245, 255, 247);
font-weight: bold;
text-decoration: none;
}
&:hover {
background-color: rgb(73, 41, 161);
}
}
}
.mylocation-button {
cursor: pointer;
margin-top: 20px;
background-color: #bd93f9;
padding: 20px;
text-align: center;
font-weight: bold;
border-radius: 5px;
&:hover {
background-color: #9061d3;
}
}
.footer {
font-weight: bold;
color: #8f9099;
text-decoration: none;
transition: color 0.3s;
&:hover {
color: #696a72;
}
}
}
.dark {
background-color: #44475a;
color: #f8f8f2;
}
.light {
color: #44475a;
background-color: #f8f8f2;
}