summaryrefslogtreecommitdiff
path: root/main_style.css
diff options
context:
space:
mode:
Diffstat (limited to 'main_style.css')
-rw-r--r--main_style.css51
1 files changed, 51 insertions, 0 deletions
diff --git a/main_style.css b/main_style.css
new file mode 100644
index 0000000..142456d
--- /dev/null
+++ b/main_style.css
@@ -0,0 +1,51 @@
+body{
+ background-color: darkblue;
+ color: white;
+ text-align: center;
+}
+
+body>header>h1 {
+ min-height:100px;
+ background: transparent url("https://dream.public.cat/uploads/dream/original/1X/0c90cdab7f4542baa08e4232e2ddb7e8216b419c.png") top left/2rem no-repeat;
+}
+
+.button {
+ background-color: #4CAF50; /* Green */
+ border: none;
+ color: white;
+ padding: 15px 32px;
+ text-align: center;
+ text-decoration: none;
+ display: inline-block;
+ font-size: 16px;
+}
+
+
+.grid-container{
+ display: grid;
+ grid-template-columns: 33% 34% 33%;
+ background-color: #2196F3;
+ padding: 10px;
+}
+
+.grid-container > section {
+ background-color: gray;
+ border: 1px solid black;
+ padding: 20px;
+ font-size: 30px;
+ text-align: center;
+}
+
+.tagline{
+ font-size: 30px;
+}
+
+aside{
+ width: 60%;
+ margin: auto;
+}
+
+section{
+ background-color: gray;
+ padding: 20px;
+}