-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
151 lines (129 loc) · 2.87 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
body {
background: linear-gradient(to bottom, #70b0ff, #1f84ff, #005ccc);
background-repeat: no-repeat;
}
.results-div {
height: 100%;
padding-left: 10px;
background-color: violet;
background: linear-gradient(to bottom, #70b0ff, #1f84ff, #005ccc);
background-repeat: no-repeat;
}
.sf {
background-color: #6f00fe;
align-items: center;
justify-content: center;
padding: 20px;
display: flex;
}
table, th, td {
border: 1px solid black; // changing-colors
// word-wrap: break-word;
}
// tr:first-child {
// font-weight: bold;
// }
tr:nth-child(even) {background: springgreen} // changing-colors
tr:nth-child(odd) {background: springgreen;} // changing-colors
* {
box-sizing: border-box;
}
#big-char {
text-indent: 14px;
background-image: url("https://cdn.jsdelivr.net/gh/linuxguist/files@main/type2.png");
background-position: left center;
background-repeat: no-repeat;
width: 94%;
font-size: 16px;
padding: 8px 20px 8px 40px;
border:2px solid Tomato; // changing-colors
margin-bottom: 18px;
border-radius: 25px;
margin: auto;
}
#myTable {
border-collapse: collapse;
border: 1px solid #ddd; // changing-colors
width: 100%;
margin-top: 18px;
// Remove the // in front of the below two lines, to get fixed-width
// table-layout: fixed;
// word-wrap: break-word;
// font-size: 18px;
}
#myTable th, #myTable td {
text-align: left;
padding: 12px;
}
#myTable tr {
border-bottom: 1px solid #ddd; // changing-colors
}
#myTable tr:first-child:hover, #myTable tr:hover {
background-color: aqua; // changing-colors
}
// #myTable tr:first-child {
// background-color: DarkKhaki; // changing-colors
// font-weight: bold;
// }
#myTable th {
background-color: khaki; // changing-colors
}
pre {
display: block;
font-family: verdana, Consolas,"courier new";
color: white;
background-color: dodgerblue;
// padding: 10px;
// font-size: 105%;
white-space: pre;
// margin: 1em 0;
border:1px solid #99cc44;
border-left:10px solid #99cc44;
-webkit-border-radius: 25px;
border-radius: 25px;
word-wrap: normal;
// overflow: scroll;
overflow: auto;
width: 100%;
max-height: 200px;
}
* {
font-family: verdana, monospace, 'Open Sans', Helvetica, sans-serif;
font-size: 16px;
}
img {
// max-width: 100%;
// height: auto;
}
iframe, object, embed{max-width: 100%;}
.ANCHORS{
margin-bottom: 80px;
display:inline-block;
}
i.fa {
// vertical-align: middle;
// transform: scale(0.5,1);
}
.wrapper {
display: flex;
align-items: center;
justify-content: center;
// max-width: 10px;
// height: 200px;
// border: 2px solid salmon;
padding: 0px;
}
.videoWrapper {
position: relative;
padding-bottom: 56.25%;
/* 16:9 */
padding-top: 25px;
height: 0;
}
.videoWrapper>iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}