-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDocumentation_CSS.css
More file actions
85 lines (84 loc) · 1.13 KB
/
Documentation_CSS.css
File metadata and controls
85 lines (84 loc) · 1.13 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
#navbar{
position:fixed;
min-width:290px;
top:5px;
left:15px;
width:300px;
height:100%;
border-right: solid;
border-color:rgba(0,22,22,0.4)
}
header{
display: inline;
font-size: 28px;
}
header:hover{
font-family: cursive;
}
nav>header{
font-size: 30px;
background-color: #DE995D;
border-radius: 8px;
padding: 2px 5px;
}
a>li{
font-size: 20px;
}
a>li:hover{
font-family: cursive;
font-size: 30px;
}
#navbar li{
color: #4d4e53;
width:100%;
}
#main-doc{
background-color: #E1E6E7;
}
section{
margin: 35px 10px;
}
li > p {
font-size: 20px;
}
code{
display: grid;
font-size: 15px;
}
code:hover{
transform: scale(1.15);
}
.box{
margin: 7px 0px;
display: grid;
color: blue;
border-radius: 25px;
background-color: #CCF0CC;
}
@media(max-width: 1150px) {
.size
{
text-align: center;
}
a>li{
line-height: 2px;
font-size: 20px;
text-align: center;
list-style: none;
}
#navbar{
position:absolute;
top:0;
margin: 0;
width:100%;
border:none;
}
#main-doc{
position: relative;
margin-left:0px;
margin-top:235px;
}
li > p {
font-size: 15px;
}
}