-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
152 lines (129 loc) · 3.04 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
:root {
--body-bg: #212529;
--text: #ffffff;
--accent: #42a4b9;
--accent: #ea317b;
--accent: #FFA86A;
}
body {
--bs-body-font-family: var(--bs-font-monospace);
--bs-body-line-height: 1.4;
--bs-body-bg: var(--bs-gray-100);
background-color:var(--body-bg);
color:var(--text);
}
a {
--bs-body-font-family: var(--bs-font-monospace);
text-decoration: none;
color:var(--text);
border-bottom:1px solid var(--text);
}
.col,[class*="col-"]{
margdin-bottom:25px;
}
.wrapper{
/*width:90%;*/
margin:0px auto;
}
.header{
padding:25px 0px;
background-image: linear-gradient(to bottom, rgb(33, 37, 41), rgb(33, 37, 41), rgb(33, 37, 41), rgb(33, 37, 41), rgba(255,0,0,0));
}
.header a{
margin:0px 10px;
}
.header .nav, .header .nav img{
height:80px;
}
.framed{
border: 1px solid var(--accent);
padding: 20px;
}
code,highlight {
font-feature-settings: normal;
background: rgba(255,168,106,0.2);
color: var(--accent);
padding: 1px 6px;
margin: 0 2px;
font-size: .95rem
}
colored {
color: var(--accent);
}
.img{
padding:5px;
border:5px solid var(--accent);
margin:15px 0px;
}
h1 {
display: block;
font-size: 2em;
margin-block-start: 0.67em;
margin-block-end: 0.67em;
margin-inline-start: 0px;
margin-inline-end: 0px;
font-weight: bold;
position: relative;
color: var(--accent);
margin: 0 0 15px;
padding-bottom: 15px;
border-bottom: 3px dotted var(--accent);
margin:20px 0px;
}
h1:after {
content: '';
position: absolute;
bottom: 2px;
display: block;
width: 100%;
border-bottom: 3px dotted var(--accent);
}
h2 {
display: block;
font-size: 1.1em;
margin-block-start: 0.67em;
margin-block-end: 0.67em;
margin-inline-start: 0px;
margin-inline-end: 0px;
font-weight: bold;
position: relative;
color: var(--accent);
margin: 0 0 15px;
padding-bottom: 15px;
margin:10px 0px;
}
h2 a{
text-decoration: none;
color:var(--accent);
border-bottom:1px solid var(--accent);
}
h2:after {
content: '';
position: absolute;
bottom: 2px;
display: block;
width: 100%;
}
.footer__copyright__text i {
color: var(--accent);
}
/* For the active nav tab */
a.active {
border-bottom: 3px solid #FFA86A; /* Orange line for active tab */
}
/* Button */
.btn {
display: inline-block; /* Allow setting width and height */
padding: 10px 20px; /* Adjust padding as needed */
color: #FFA86A; /* Text color */
background-color: transparent; /* Transparent background */
border: 2px solid #FFA86A; /* Orange border */
border-radius: 0; /* Remove rounded borders */
text-decoration: none; /* Remove underline from text */
font-size: 16px; /* Adjust font size */
cursor: pointer; /* Change cursor to pointer */
transition: background-color 0.3s; /* Smooth background transition */
}
.btn:hover {
background-color: rgba(250, 168, 106, 0.2); /* Light orange background on hover */
}