summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorAlejandro <alex.mac.fon@gmail.com>2024-08-03 11:52:50 -0600
committerAlejandro <alex.mac.fon@gmail.com>2024-08-03 11:52:50 -0600
commit5c301be7e1736e73fa8ffa1c1d1c16f233fd2015 (patch)
tree28cee9c09e1be0603b71c1b4e1c995be84da14d7 /static
parent42a228ed406ee9af0cbf8a392dff667685e13553 (diff)
added: read more button and majors class
Diffstat (limited to 'static')
-rw-r--r--static/style.css32
1 files changed, 32 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css
index 88f3b95..9b493d6 100644
--- a/static/style.css
+++ b/static/style.css
@@ -44,3 +44,35 @@ footer {
#nextart,#prevart {
max-width: 33% ;
}
+
+h1 {
+ text-align: center;
+}
+
+.majors{
+ text-align: center;
+ align-content: center;
+ justify-content: center;
+ display: flex;
+ max-width: 1280px;
+ list-style: none;
+ flex-wrap: wrap;
+ gap: 10px;
+}
+
+.majors > li{
+ min-height: 600px;
+ max-width: 300px;
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+}
+
+#read-more {
+ font-weight: bold;
+ background-color: red;
+ padding: 4px;
+ border-radius: 6px;
+ justify-content: center;
+ margin: 0 auto;
+}