-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (103 loc) · 1.98 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
* {
margin: 0;
padding: 0;
}
body{
background-image: url(background.webp);
background-repeat: no-repeat;
background-size: cover;
}
.main{
border-radius: 1.3125rem;
background: rgba(189, 188, 188, 0.58);
width: 95vw;
height: 90vh;
margin-top: 40px;
overflow: scroll;
}
.nav{
display: flex;
flex-direction: row;
flex-wrap: wrap;
padding-top: 3.5vh;
}
.nav h1{
flex:3;
display: flex;
margin-left: 60px;
font-family: Arial, Helvetica, sans-serif;
mix-blend-mode: plus-darker;
color: #D9D0D0;
}
.search{
display: flex;
flex: 1;
font-size: 1rem;
margin-right: 60px;
width: 20vw;
height: 35px;
border-radius: 1.875rem;
border: 1px solid #898989;
background: #D9D9D9;
overflow: hidden;
padding: 0px 10px;
align-items: center;
min-width: 200px;
}
.search input{
font-size: 1rem;
margin-left: 10px;
height: 35px;
border: none;
background: #D9D9D9;
}
.search img{
height: 25px;
}
.search input:focus{
outline: none;
}
#place{
color: #a87171;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
font-size: 6rem;
margin-top: 60px;
font-style: normal;
font-weight: 600;
line-height: normal;
}
.data{
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
#data{
margin: 50px 50px ;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
flex: 1;
min-width: 250px;
height: 300px;
border-radius: 2.25rem;
background: linear-gradient(to top, #A5A2A2 11%, #D9D9D9 0%);
background-repeat: no-repeat;
}
#data h6{
order: 2;
color: #393939;
font-family: Arial, Helvetica, sans-serif;
font-size: 1.25rem;
font-style: normal;
font-weight: 400;
line-height: normal;
margin-bottom: 5px;
}
#logo{
order: 1;
width: 100px;
margin-top: 25px;
justify-content: flex-start;
}