-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpresentation.css
More file actions
144 lines (131 loc) · 2.67 KB
/
Copy pathpresentation.css
File metadata and controls
144 lines (131 loc) · 2.67 KB
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
:root {
color-scheme: light dark;
--bg-color: light-dark(#ffffff, #000000);
--text-color: light-dark(#000000, #ffffff);
overflow-y: scroll;
overflow-x: hidden;
}
html, body {
background-color: var(--bg-color);
color: var(--text-color);
font-family: sans-serif, Sans-Serif;
line-height: 1.8;
max-width: 950px;
margin: 0 auto;
padding: 10px;
}
/* button styling */
button {
/* button styling */
background-color: #dedede;
color: black;
padding: 5px 5px;
text-align: center;
cursor: pointer;
border-radius: 5px;
border: 1px solid black;
box-shadow: 3px 3px black, 2px 2px black, 1px 1px black;
}
button:hover {
/* button styling on hover */
background-color: #73AD21;
box-shadow: 3px 3px #476b14, 2px 2px #476b14, 1px 1px #476b14;
color: white;
}
button:active {
/* clicked button styling (nice 3D effect) */
box-shadow: 1px 1px #476b14, 0px 0px #476b14, 0px 0px #476b14;
translate: 2px 2px 2px;
}
button:disabled {
/* disabled buttons grayed out and already look clicked */
background-color: #f2f2f2;
translate: 2px 2px 2px;
box-shadow: 1px 1px black, 0px 0px black, 0px 0px black;
color: #cccccc;
cursor: default;
}
/* div with navigation buttons always visibile at the bottom of the page */
div.bottom-color {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #f3f3f3;
display: flex;
justify-content: center;
align-items: center;
}
div.bottom-div {
}
/* code block styling */
div.coopCodeContainer {
width: 100%;
display: flex;
background-color: #f3f3f3;
border-radius: 4px;
border: 1px solid #ddd;
}
div.copyFont {
width: 10%;
text-align: right;
}
div.copyCode {
width: 90%;
display: flex;
align-items: center;
}
pre {
padding: 4px;
overflow-x: auto;
}
code {
font-family: Monospace;
font-size: 14px;
color: green;
background-color: #f3f3f3;
}
code.code2 {
border-radius: 4px;
border: 1px solid #ddd;
padding: 4px;
}
/* table element styling */
table, th, td {
border: 1px solid;
border-collapse: collapse;
}
th {
background-color: #f3f3f3;
}
th, td {
padding: 10px;
}
a:link, a:visited {
/* link styling */
background-color: #dedede;
color: black;
padding: 5px 5px;
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover, a:active {
/* link styling for currently hover or clicking links */
background-color: #73AD21;
color: white;
}
a.ANOSTYLE {
/* Links with no style for image links */
background-color: initial;
}
a.text:link, a.text:visited {
/* Style for text links */
background-color: #dedede;
border-radius: 5px;
}
a.text:hover, a.text:active {
background-color: #73AD21;
border-radius: 5px;
color: white;
}