-
Notifications
You must be signed in to change notification settings - Fork 0
/
pachome_style.css
144 lines (128 loc) · 2.17 KB
/
pachome_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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
body {
background-size: cover;
font-family: 'Libre Franklin', sans-serif;
font-weight: 400;
font-size: 18px;
}
a {
color: #FFFFFF;
text-decoration: none;
}
.container {
box-sizing: border-box;
padding: 30px;
width: 50vw;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-webkit-backdrop-filter: blur(10px);
background-color: rgba(0, 0, 0, 0.2);
border: 1px solid #FFF;
text-align: center;
max-height: 90%;
}
.logo {
padding-bottom: 30px;
}
.logo img {
width: 25vw;
filter: drop-shadow(2px 2px 2px #222);
}
.shortcuts {
font-size: 4em;
padding-bottom: 30px;
}
.shortcuts a i {
transition-duration: .3s;
color: rgba(0, 0, 0, 0.5);
}
.shortcuts a i:hover {
transform: scale(1.5, 1.5);
padding: 0 10px;
color: #FFFFFF;
filter: drop-shadow(0px 10px 5px rgba(0, 0, 0, 0.3));
}
.weather {
font-size: 1em;
color: #FFFFFF;
line-height: 1em;
}
.weather #temperature {
line-height: 1em;
font-weight: 900;
font-size: 8vw;
}
.weather #location {
font-size: 2em;
font-weight: 700;
line-height: 1.4em;
}
.weather .credit a {
font-size: .7em;
color: rgba(255, 255, 255, 0.2);
line-height: 2em;
}
.search {
padding: 30px 0;
}
.search input[type=text] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
text-align: center;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
.search #GoLook {
display: none;
}
img.stickerdisplay {
height: auto;
width: 15vw;
}
@media all and (max-width: 767px) {
.container {
box-sizing: border-box;
margin: auto auto;
padding: 10px;
width: 85vw;
position: inherit;
top: inherit;
left: inherit;
transform: none;
-webkit-backdrop-filter: blur(10px);
background-color: rgba(0, 0, 0, 0.2);
border: 1px solid #FFF;
text-align: center;
}
.logo img {
width: 65vw;
filter: drop-shadow(2px 2px 2px #222);
padding: 10px 0;
}
.weather {
font-size: 1em;
color: #FFFFFF;
line-height: 1em;
}
.weather #temperature {
line-height: 1em;
font-weight: 900;
font-size: 12vw;
}
.weather #location {
font-size: 2em;
font-weight: 700;
line-height: 1.4em;
}
.search {
padding: 5px;
}
.shortcuts {
font-size: 3em;
padding: 0;
}
}