summaryrefslogtreecommitdiff
path: root/assets/style.css
diff options
context:
space:
mode:
authorSamuel W <samuel.wilhelmsson@gmail.com>2024-01-30 21:38:24 +0100
committerSamuel W <samuel.wilhelmsson@gmail.com>2024-01-30 21:38:24 +0100
commit34f9aa54e2d67a54496606591c8ca5fcfef597f6 (patch)
treed653dcf2e209fa9524455b26a5681578f13c0b90 /assets/style.css
downloadtinygram-34f9aa54e2d67a54496606591c8ca5fcfef597f6.tar.gz
tinygram-34f9aa54e2d67a54496606591c8ca5fcfef597f6.zip
init commit
Diffstat (limited to 'assets/style.css')
-rw-r--r--assets/style.css51
1 files changed, 51 insertions, 0 deletions
diff --git a/assets/style.css b/assets/style.css
new file mode 100644
index 0000000..1abdc8e
--- /dev/null
+++ b/assets/style.css
@@ -0,0 +1,51 @@
+
+body {
+ margin: 0;
+ font-family: Arial, Helvetica, sans-serif;
+ background-color: lightgray;
+ /* font-size: 15px; */
+ display: flex;
+ justify-content:center;
+}
+
+
+#container {
+ max-width: 600px;
+ width: 100%;
+ display: flex;
+ flex-direction: column;
+ align-items:center;
+}
+
+img{
+ width:100%;
+}
+
+.description {
+ flex:1;
+}
+.date {
+ font-weight: 600;
+}
+
+.summary{
+ display: flex;
+ justify-content: center;
+ flex-direction: row;
+ align-items: start;
+ width: 100%;
+}
+
+
+.post {
+ display: flex;
+ flex-direction: column;
+ padding-top: 40px;
+ padding-left: 10px;
+ padding-right: 10px;
+ justify-content: center;
+ gap: 20px;
+ word-wrap:break-word;
+ align-items: center;
+}
+