mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-24 07:05:35 +00:00
55 lines
676 B
CSS
Executable File
55 lines
676 B
CSS
Executable File
/* Media queries */
|
|
@media (min-width: 600px) {
|
|
header {
|
|
display: block;
|
|
}
|
|
|
|
header ul {
|
|
}
|
|
|
|
header nav ul {
|
|
display: inline-block;
|
|
float: right;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
#logo {
|
|
float: left;
|
|
}
|
|
|
|
.container .sidebar {
|
|
width: 19%;
|
|
float: left;
|
|
}
|
|
|
|
.container .content {
|
|
width: 75%;
|
|
float: right;
|
|
}
|
|
|
|
}
|
|
|
|
@media (min-width: 950px) {
|
|
.container {
|
|
width: 900px;
|
|
}
|
|
|
|
.container .sidebar {
|
|
width: 19%;
|
|
float: left;
|
|
}
|
|
|
|
.container .content {
|
|
width: 75%;
|
|
float: right;
|
|
}
|
|
}
|
|
|
|
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
|
|
#logo {
|
|
content: url(/static/images/Texturelogo@2x.png);
|
|
width: 186px;
|
|
height: 40px;
|
|
}
|
|
}
|