blob: b527263e482d117ecf4deb8708f2ee90ba8271df [file] [log] [blame]
TheCodedProfc86e44b2023-02-28 17:30:57 -05001.horizontalFlex {
2 width: 100vw;
3 display: flex;
4 flex-direction: row;
5 justify-content: left;
6 align-items: center;
7 gap: 10px;
8}
9
10.container {
TheCodedProfda197f22023-03-01 18:15:51 -050011 width: calc(100vw - 20px);
TheCodedProfc86e44b2023-02-28 17:30:57 -050012 display: flex;
13 flex-direction: row;
14 justify-content: left;
15 align-items: top;
16 gap: 10px;
17 margin-top: 20px;
TheCodedProfda197f22023-03-01 18:15:51 -050018 margin-right: 20px;
19 height: auto;
TheCodedProfc86e44b2023-02-28 17:30:57 -050020}
21
22.verticalFlex {
23 width: 100vw;
24 display: flex;
25 flex-direction: column;
26 justify-content: left;
27 align-items: flex-start;
28 gap: 10px;
29}
30
31.avatar {
32 border-radius: 25px;
33}
34
35.botBadge {
36 background-color: #6576CC;
37 color: white;
38 border-radius: 5px;
39 padding: 2px 5px;
40 font-size: 12px;
TheCodedProfda197f22023-03-01 18:15:51 -050041}
42
43.messageContent {
44 width: 100%;
45 color: var(--theme-ui-colors-text);
46 margin-block: 0;
47 transition: color 0.3s ease-in-out;
48 font-size: 20px;
49}
50.authorText {
51 width: fit-content;
52 color: var(--theme-ui-colors-text);
53 margin-block: 0;
54 transition: color 0.3s ease-in-out;
55 font-size: 20px;
56}
57
58/* Box for single attachment */
59.attachment {
60
61}
62/* Blue Link for attachmentURL */
63.attachmentLink {
64
65}
66
67/* Embed box */
68.embed {
69 border-left: solid 5px red;
70 border-radius: 5px 0 0 5px;
71 padding-left: 10px;
72}
73
74/* Embed Title*/
75.embedTitle {
76 font-size: 22px;
77 font-weight: bold;
78}
79
80/* Embed Description */
81.embedDescription {
82
83}
84
85/* Embed Thumbnail */
86.embedThumbnail {
87
88}
89
90/* Embed Image */
91.embedImage {
92
93}
94
95/* Embed Footer */
96.embedFooter {
97
98}
99
100/* Embed Author Box (IconURL, Username) */
101.embedAuthor {
102
103}
104
105.embedAuthor a {
106
107}
108
109.embedAuthor p {
110
111}
112
113.embedAuthor Image {
114
115}
116
117/* Embed Field */
118.embedField {
119
120}