-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
82 lines (68 loc) · 1.39 KB
/
styles.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
* {box-sizing: border-box;}
body {
margin: 0 auto;
font-family: 'Nunito', san-serif;
font-size: 17px;
background-color: #f5efed;
padding: 2em 2em 3.5em;
max-width: 1000px;
}
img {
border-radius: 8px;
}
.header {
overflow: hidden;
background-color: #f1f1f1;
padding: 20px 0px;
}
.header a {
float: left;
color: black;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 4px;
}
.header a.logo {
font-size: 25px;
font-weight: bold;
}
.header a:hover {
background-color: #ddd;
color: black;
}
.header a.active {
background-color: dodgerblue;
color: white;
}
.header-right {
float: right;
}
@media all and (max-width: 640px){
#site > .wrapper, #footer > .wrapper {
margin: 0;
padding: 40px;
width: auto;
}
}
#unfloated-container{
width: 1000px;
}
.algorithm {
background-color: #f9f9f9; /* Light grey background */
border: 1px solid #ddd; /* Light border */
padding: 15px; /* Some padding */
border-radius: 5px; /* Rounded corners */
font-family: 'Courier New', Courier, monospace; /* Monospaced font */
overflow-x: auto; /* Horizontal scroll if needed */
margin-bottom: 20px; /* Space below the algorithm */
}
.algorithm h2 {
font-size: 1.5em;
margin-bottom: 10px;
}
.algorithm pre {
margin: 0;
}