forked from adamlaska/circleci-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_mobile.scss
More file actions
59 lines (52 loc) · 942 Bytes
/
_mobile.scss
File metadata and controls
59 lines (52 loc) · 942 Bytes
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
// Navigation Sidebar
#nav-button{
display: block;
position: fixed;
left: 0;
margin-top: 25px;
border: 1px solid #CCC;
border-radius: 0 6px 6px 0;
background-color: #EEEEEE;
padding: 10px 6px;
width: 1em;
height: 3em;
color: #333333;
font-weight: bold;
font-size: 0.85em;
word-wrap: break-word;
line-height: 1;
text-align: center;
text-decoration: none;
box-sizing: content-box;
transition: left 0.3s ease-in-out;
z-index: 10;
}
#nav-button:visited,
#nav-button:hover,
#nav-button:active{
text-decoration: none;
}
#nav-button.open{
left: 240px;
}
// Article
div.article-container{
width: 100%;
.license-notice{
width: 100%;
}
}
// Really small mobile, think iPhone 5 or earlier
@media screen and (max-width: 500px){
body.homepage div.category-section{
width: 100%;
}
}
@media (max-width: 600px) {
.os-matrix p{
display: block;
border-left: none;
padding-top: 0;
padding-bottom: 0;
}
}