-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
130 lines (114 loc) · 2.16 KB
/
main.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
html {
padding: 0;
margin: 0;
}
body {
padding: 0px;
margin: 0px;
background-color: rgb(251 251 251);
font-family: Georgia, "Times New Roman", Times, serif;
font-size: large;
font-stretch: expanded;
overflow-x: hidden;
}
#nav {
background-color: rgb(104, 28, 143);
min-height: 0.5em;
width: 100%;
padding: 1rem;
display: flex;
justify-content: space-between;
position: sticky;
position: -webkit-sticky;
position: -moz-sticky;
position: -ms-sticky;
position: -o-sticky;
top: 0;
box-shadow: 0em 4px 1px 0px rgb(86, 19, 119);
z-index: 100;
}
#nav > img {
margin: 0;
mix-blend-mode: screen;
}
#time {
display: flex;
place-items: center;
color: rgb(220, 180, 240);
margin-right: 1.75rem;
}
div {
display: flex;
flex-direction: column;
width: 92%;
margin: 0.5em;
padding-left: 1.1em;
padding-right: 0.8em;
padding-bottom: 0em;
padding-top: 0em;
}
#Table_of_contents {
padding: 1.2em;
margin: 1.25em;
max-width: 450px;
min-height: 210px;
background-color: rgba(169, 141, 236, 0.65);
color: indigo;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
letter-spacing: 0.8px;
font-weight: 500;
font-variant: small-caps;
border-radius: 1em;
-moz-border-radius: 1em;
-webkit-border-radius: 1em;
}
#Table_of_contents > h1 {
text-decoration-line: underline;
-moz-text-decoration-line: underline;
}
.link_cont {
font-size: 1.025em;
margin: 0.2em;
}
#Table_of_contents > ol {
padding: 10px;
margin: 0px;
}
h1,
h2,
h3,
h4 {
color: darkorchid;
margin: 0;
padding: 0.25rem;
}
p {
padding: 0.25rem;
}
figure {
background-color: rgba(169, 141, 236, 0.5);
padding-bottom: 0.2em;
padding-top: 0.25em;
padding-left: 0.3em;
padding-right: 0.3em;
margin: 2.5em 1em;
display: flex;
justify-content: space-evenly;
border-radius: 0.6em;
min-width: fit-content;
box-shadow: 0em 4px 5px 1px rgb(139, 101, 230);
}
figure > img {
border-radius: 0.6em;
margin: 0.2em;
}
.button {
color: blue;
font-style: oblique;
font-weight: 500;
}
a {
text-decoration-line: none;
-moz-text-decoration-line: none;
}