forked from CoboGlobal/developer-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
171 lines (140 loc) · 3.48 KB
/
styles.css
File metadata and controls
171 lines (140 loc) · 3.48 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
.container {
width: 80%;
margin-top: -40px;
margin-bottom: -40px;
margin-right: 0px;
margin-left: 0px;
}
/*
#navbar {
background: linear-gradient(
135deg,
#61155c1a 7%,
#ba2cb01a 50%,
#d037c51a 300%
);
}
*/
.text {
display: inline-block;
}
.icon {
display: inline;
height: 30px;
margin-top: 0px;
margin-bottom: 0px;
}
.diagram {
}
.screenshot_full_screen {
border: 1px solid transparent; /* Set image border style */
border-radius: 10px; /* Give images rounded edge */
border-color: #EDEEF3; /* Image border color */
/* Force image to keep original width and height */
width: auto;
height: auto;
/* Center the image */
display: block;
margin: auto;
}
.screenshot_nav_bar {
border: 1px solid transparent; /* Set image border style */
border-radius: 10px; /* Give images rounded edge */
border-color: #EDEEF3; /* Image border color */
/* Force image to keep original width and height */
width: 180px;
height: auto;
/* Center the image */
display: block;
margin: auto;
}
.screenshot_modal {
border: 1px solid transparent; /* Set image border style */
border-radius: 10px; /* Give images rounded edge */
border-color: #EDEEF3; /* Image border color */
/* Force image to keep original width and height */
width: 450px;
height: auto;
/* Center the image */
display: block;
margin: auto;
}
/*.screenshot {
border: 1px solid transparent; *//* Set image border style *//*
border-radius: 10px; *//* Give images rounded edge *//*
border-color: #EDEEF3; *//* Image border color *//*
*//* Force image to keep original width and height *//*
width: 400px;
height: auto;
*//* Center the image *//*
display: block;
margin: auto;
}*/
/*.container_for_screenshot {
display: grid;
place-items: center;
}*/
/*
table {
border-collapse: collapse;
width: 100%;
}
table, th, td {
border: 1px solid #A9A9A9;
}
th, td {
padding: 8px;
display: table-cell;
}
table tr:first-child th {
font-weight: bold;
vertical-align: middle; */
/* Center vertically *//*
text-align: center;
}
table tr td:first-child {
font-weight: bold;
vertical-align: middle; */
/* Center vertically *//*
text-align: center;
}*/
table {
border-collapse: collapse;
width: 100%;
table-layout: fixed;
}
table th, table td {
width: auto;
min-width: 130px; /*Ajustable, avoid columns to be too narrow */
border: 1px solid #ddd;
padding: 12px;
text-align: left;
vertical-align: middle;
word-wrap: break-word;
}
/* Style the header */
table th {
height: 37px;
background-color: #1F32D6;
color: white !important;
font-weight: bold;
vertical-align: middle;
}
/* Add left padding to the first column */
table th:first-child, table td:first-child {
padding-left: 8px;
}
.table-three-cols {
width: 100%; /* Make the table take the full width of its container */
border-collapse: collapse; /* Collapse borders for a cleaner look */
table-layout: fixed; /* Use fixed table layout */
}
.table-three-cols th, .table-three-cols td {
width: 33.33%; /* Each column takes up one-third of the table's width */
text-align: left; /* Align text to the left */
padding: 8px; /* Add some padding for better spacing */
border: 1px solid #ddd; /* Add a border to the cells */
overflow: hidden; /* Prevent overflow of content */
text-overflow: ellipsis; /* Add ellipsis for overflowed text */
max-width: 240px; /* Set a maximum width for the columns */
}