Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
FogNetwork
GitHub Repository: FogNetwork/Tsunami
Path: blob/main/public/css/mobile.css
1036 views
1
@media only screen and (max-width: 730px) {
2
.search {
3
width: 85%;
4
}
5
6
#suggestions {
7
width: calc(85% + 32px);
8
}
9
10
.navitem {
11
display: none;
12
}
13
14
.navname {
15
margin-left: auto;
16
}
17
18
/*
19
Do In v3
20
.search:focus {
21
position: fixed;
22
top: 10px;
23
right: 10px;
24
left: 10px;
25
margin-right: auto;
26
margin-left: auto;
27
width: auto;
28
}
29
30
.search:focus ~ #suggestions {
31
width: auto;
32
top: 52px;
33
right: 10px;
34
left: 10px;
35
position: fixed;
36
margin-right: auto;
37
margin-left: auto;
38
}
39
40
.search:focus ~ .proxies {
41
display: none;
42
}
43
}
44
*/
45