diff options
| author | “Ryder <“r@okfoc.us”> | 2016-04-13 13:39:57 -0400 |
|---|---|---|
| committer | “Ryder <“r@okfoc.us”> | 2016-04-13 13:39:57 -0400 |
| commit | 6ab710d35893a94836b800baea0aa8d6164219a3 (patch) | |
| tree | 592f4acbd316b5da6fc991501e19940af4088450 | |
| parent | 90657795986d3dbebbcaa488679fc2c246342306 (diff) | |
media query
| -rw-r--r-- | public/assets/ok.css | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/public/assets/ok.css b/public/assets/ok.css index 1e8bcb4..dbec7f4 100644 --- a/public/assets/ok.css +++ b/public/assets/ok.css @@ -109,6 +109,7 @@ h3 { justify-content: space-between; align-content: stretch; align-items: flex-start; + overflow:hidden; } .intro div { @@ -737,6 +738,10 @@ nav { .projectLink { display: block; margin-top: 3px; + text-overflow: ellipsis; + width: 100%; + white-space: nowrap; + overflow: hidden; } ul li { @@ -769,9 +774,6 @@ ul li { width: 11px; padding: 1px 0 0 0; } - .projectLink { - margin-top: 3px; - } .intro div.text, h3, .left a { font-size: 14px; @@ -779,6 +781,14 @@ ul li { } } +@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { + .intro div.text, + h3, .left a { + font-size: 13px; + line-height: 18px; + } +} + @media (min-width: 1500px) { |
