diff --git a/bare/common.css b/bare/common.css new file mode 100644 index 0000000..f2c9d2b --- /dev/null +++ b/bare/common.css @@ -0,0 +1,24 @@ +* { + padding: 0; + margin: 0; + background-color: #181c20; + color: white; + box-sizing: border-box; +} + +.main-container { + display: flex; + justify-content: space-around; + align-items: stretch; + background-color: black; + gap: 0.33333333vw; + height: 99.5vh; +} +.main-element { + display: inline-block; + height: 99.5vh; + width: 32vw; + text-align: center; + background-color: #181c20; + position: relative; +} diff --git a/bare/index.html b/bare/index.html index 300bd9c..7f2c67d 100644 --- a/bare/index.html +++ b/bare/index.html @@ -4,6 +4,7 @@ +