-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyles.css
More file actions
107 lines (86 loc) · 1.55 KB
/
Styles.css
File metadata and controls
107 lines (86 loc) · 1.55 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
*{
top: 0;
left: 0;
}
body {
font-family: 'Open Sans', Arial, sans-serif;
line-height: 25px;
background: #edede9;
}
/* Menu */
#navbar{
position: fixed;
height: 100%;
width: 300px;
border-right: 3px solid black;
}
#menuTittle{
text-align: center;
font-size: 20px;
}
.nav-items{
height: 90%;
padding: 0; /*Para que no tenga paddng automatico*/
}
#navbar li{
list-style: none;
border-top: 1px solid black;
padding-left: 10px;
}
#navbar a{
display: block; /*para que ocupe toda la fila*/
text-decoration: none;
color: black;
padding: 10px;
}
/* Articulos */
section{
padding-top: 20px;
margin-bottom: 30px;
padding-left: 350px;
}
.h2{
font-weight: bold;
padding-bottom: 10px;
}
p {
margin-left: 20px;
padding-bottom: 5px;
}
code {
display: block;
text-align: left;
word-break: normal;
word-wrap: normal;
word-spacing: normal;
background-color: #a1b5d8;
margin-left: 20px;
}
.ulText{
margin-left: 30px;
line-height: 2;
}
span{
color: green;
}
@media(max-width: 600px) {
#navbar{
position: absolute;
top: 0;
padding: 0;
margin: 0;
width: 100%;
border-right: none;
max-height: 730px;
border-bottom: 3px solid black;
}
#main-doc {
margin-top: 720px;
padding-top: 20px;
}
section{
padding-top: 10px;
padding-bottom: 10px;
padding-left: 0;
}
}