-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (72 loc) · 1.22 KB
/
style.css
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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
*{
padding: 0;
box-sizing: border-box;
line-height: 150%;
font-family: 'Open Sans', sans-serif;
font-size: medium;
}
header{
font-weight:550;
font-size:160%;
}
.document{
display: flex;
gap: 2em;
}
#navbar{
display: flex;
flex-direction: column;
position: fixed;
margin-left:3%;
}
.nav{
margin-top:5%;
/* overflow-x: hidden; */
overflow-y: scroll;
position: fixed;
width:25%;
height:90%;
}
.nav-items{
padding:1.2em;
border-top: 1px solid black;
}
.description{
margin:1.2em 1.2em 1.2em 1.9em;
margin-left: 28%;
}
.sub-code{
padding:1% 30% 1% 2% ;
background-color: rgb(244, 244, 241);
font-size: 85%;
}
.sub-main-section{
margin-left:6em;
}
.link{
text-decoration-color: rgb(85, 26, 139);
text-decoration: underline;
color:rgb(85,26,139);
}
a{
text-decoration: none;
color:black;
}
li{
margin:1em;
}
.link:hover{
color:red;
text-decoration-color:red;
}
section{
display: block;
}
@media screen and (max-width:1000px) {
.document{min-width:950px;
}
.description{
font-size: 180%;
}
}