-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (86 loc) · 1.8 KB
/
style.css
File metadata and controls
100 lines (86 loc) · 1.8 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
body, html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
header.site-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
background-color: #f0f0f0;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.branding h1 {
margin: 0;
font-size: 24px;
color: #333;
}
.support-text {
text-align: center;
font-size: 14px;
color: #666;
}
.controls {
margin: 10px;
text-align: center;
}
#feed {
justify-content: center;
}
.post {
display: flex;
align-content: center;
align-items: center;
margin: 10px;
padding: 20px;
width: auto;
max-height: auto;
border: none;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
background-color: white;
transition: background-color 0.5s ease, border-color 0.5s ease;
text-decoration: none;
color: inherit;
overflow: hidden;
}
.post img {
width: 120px;
height: 120px;
margin-right: 20px;
border-radius: 60px;
}
.trade-info {
display: inline-block;
flex-direction: row;
justify-content: space-evenly;
}
.trade-info > div {
margin: 5px 0;
font-size: 14px;
display: inline-block;
flex-direction: row;
justify-content: space-evenly;
}
.table thead th {
white-space: wrap; /* Prevent line breaks */
}
.table tbody td:first-child {
font-weight: bold; /* Make the first column (Name) bold */
}
tr tbody {
display: table-row;
vertical-align: center;
unicode-bidi: isolate;
border-color: inherit;
}
table tbody > tr > td {
position: relative;
padding: 8px 10px;
overflow-wrap: break-word;
}
a {
text-decoration: inherit;
padding: 0px;
}