From a02e49e2d7616f70ba0cf93fba88d44e1da8de3a Mon Sep 17 00:00:00 2001 From: Roberto-Kaiser <159036437+Roberto-Kaiser@users.noreply.github.com> Date: Fri, 5 Apr 2024 08:03:01 -0300 Subject: [PATCH] Create one.css --- one.css | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 one.css diff --git a/one.css b/one.css new file mode 100644 index 0000000..18fb08e --- /dev/null +++ b/one.css @@ -0,0 +1,39 @@ +* { + margin: 0; + padding: 0; + font-family: 'Poppins', sans-serif; + box-sizing: border-box; +} + +body { + background: #2e364a; +} + +.timeline { + position: relative; + max-width: 1200px; + margin: 100px auto; +} + +.container { + padding: 10px 50px; + position: relative; + width: 50%; + background: rgba(0, 0, 0, 0.3); +} + +.text-box { + padding: 20px 30px; + background: #fff; + position: relative; + border-radius: 6px; + font-size: 15px; +} + +.left-container { + left: 0; +} + +.right-container { + left: 50%; +}