File tree 8 files changed +709
-0
lines changed
8 files changed +709
-0
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change
1
+ @import url ("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" );
2
+
3
+ * {
4
+ margin : 0 ;
5
+ padding : 0 ;
6
+ box-sizing : border-box;
7
+ font-family : "Poppins" , sans-serif;
8
+ }
9
+
10
+ body {
11
+ display : block;
12
+ height : 100% ;
13
+ width : 100% ;
14
+ background : # f5f6fa ;
15
+ }
16
+
17
+ # navbar {
18
+ position : fixed;
19
+ top : 0 ;
20
+ left : 0 ;
21
+ padding : 10px ;
22
+ height : 100% ;
23
+ min-width : 350px ;
24
+ color : # ffffff ;
25
+ border : none;
26
+ background-color : # 174782 ;
27
+ }
28
+
29
+ # navbar header {
30
+ margin : 10px 0 ;
31
+ font-size : 28px ;
32
+ font-weight : 500 ;
33
+ letter-spacing : 1px ;
34
+ word-spacing : 5px ;
35
+
36
+ }
37
+
38
+ # navbar ul {
39
+ height : 88% ;
40
+ overflow-x : hidden;
41
+ overflow-y : auto;
42
+ }
43
+
44
+ # navbar li {
45
+ padding : 10px 20px ;
46
+ list-style-type : none;
47
+ }
48
+
49
+ # navbar a {
50
+ font-size : 17px ;
51
+ text-decoration : none;
52
+ color : # bdc3c9 ;
53
+ }
54
+
55
+ # main-doc {
56
+ margin-left : 350px ;
57
+ padding : 100px 50px ;
58
+ text-align : justify;
59
+ }
60
+
61
+
62
+ # main-doc p {
63
+ margin-top : 20px ;
64
+ }
65
+
66
+ # main-doc li {
67
+ margin : 10px 50px ;
68
+ }
69
+
70
+ code {
71
+ display : block;
72
+ padding : 20px ;
73
+ line-height : 30px ;
74
+ font-size : 15px ;
75
+ font-weight : 500 ;
76
+ letter-spacing : 1px ;
77
+ word-spacing : 5px ;
78
+ color : # abb2bf ;
79
+ border-radius : 12px ;
80
+ background : # 353a40 ;
81
+ }
82
+
83
+ .comment {
84
+ color : # 5c6370 ;
85
+ }
86
+
87
+ .keyword {
88
+ color : # c678dd ;
89
+ }
90
+
91
+ .string {
92
+ color : # 98c379 ;
93
+ }
94
+
95
+ .number {
96
+ color : # d19a66 ;
97
+ }
98
+
99
+ .operator {
100
+ color : # 56b6c2 ;
101
+ }
102
+
103
+ @media screen and (width < 800px) {
104
+ body {
105
+ display : flex;
106
+ justify-content : center;
107
+ align-items : center;
108
+ flex-direction : column;
109
+ }
110
+
111
+ # navbar {
112
+ position : relative;
113
+ width : 100% ;
114
+ min-height : 860px ;
115
+ }
116
+
117
+ # navbar header {
118
+ font-size : 20px ;
119
+ text-align : center;
120
+ border-bottom : 2px solid # ffffff ;
121
+ padding-bottom : 20px ;
122
+ }
123
+
124
+ header {
125
+ text-decoration : underline;
126
+ color : # c678dd ;
127
+ font-size : medium
128
+ }
129
+
130
+ # navbar li a {
131
+ font-size : 20px ;
132
+ letter-spacing : 1px ;
133
+ word-spacing : 2px ;
134
+ }
135
+
136
+ # main-doc {
137
+ margin-left : 0 ;
138
+ }
139
+ }
You can’t perform that action at this time.
0 commit comments