mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-11-02 13:03:22 +00:00
74 lines
941 B
CSS
74 lines
941 B
CSS
body {
|
|
background: #fafafa;
|
|
font-family: menu, "Helvetica Neue", sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
.logo {
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
#version {
|
|
color: #aaa;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.about {
|
|
margin-top: 50px;
|
|
text-align: center;
|
|
}
|
|
|
|
.about p {
|
|
font-size: 20px;
|
|
color: rgba(0, 0, 0, 0.62);
|
|
}
|
|
|
|
.about img {
|
|
width: 150px;
|
|
}
|
|
|
|
.detail {
|
|
text-align: center;
|
|
}
|
|
|
|
.detail.maintainer {
|
|
font-size: 1.2em;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.detail.license {
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.maintenance-info {
|
|
position: absolute;
|
|
width: 100%;
|
|
bottom: 20px;
|
|
left: 0px;
|
|
color: #444;
|
|
}
|
|
|
|
.maintenance-info p {
|
|
margin: 0;
|
|
font-size: 1em;
|
|
|
|
width: 100%;
|
|
}
|
|
|
|
.maintenance-info .bug {
|
|
display: inline-block;
|
|
padding: 8px 15px;
|
|
margin-top: 30px;
|
|
text-decoration: none;
|
|
background-color: #52c2af;
|
|
color: #fff;
|
|
border-radius: 4px;
|
|
|
|
transition: background-color 0.2s ease;
|
|
}
|
|
|
|
.maintenance-info .bug:hover {
|
|
background-color: #32a692;
|
|
}
|