From 6df127e720323eaa93aec6293cc6a7b44cd7cfe3 Mon Sep 17 00:00:00 2001 From: Olateju Ati-John Date: Sat, 21 Sep 2024 10:50:38 +0100 Subject: [PATCH 1/3] Changing the height and the width of the circle --- .gitignore | 3 ++ .idea/vcs.xml | 6 ++++ .idea/workspace.xml | 75 +++++++++++++++++++++++++++++++++++++++++++++ style.css | 4 +-- 4 files changed, 86 insertions(+), 2 deletions(-) create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml diff --git a/.gitignore b/.gitignore index b6e47617d..6c76c1ec9 100644 --- a/.gitignore +++ b/.gitignore @@ -127,3 +127,6 @@ dmypy.json # Pyre type checker .pyre/ + +# Jetbrains stuff +.idea/ diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 000000000..94a25f7f4 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 000000000..2d996b42b --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,75 @@ + + + + + + + + + + + + { + "lastFilter": { + "state": "OPEN", + "assignee": "TejjyMK" + } +} + { + "selectedUrlAndAccountId": { + "url": "https://github.com/TejjyMK/gkpbt-css-circle.git", + "accountId": "a63aa034-de8f-48c4-a3fb-5e6517dc6f11" + } +} + { + "associatedIndex": 7 +} + + + + + + + + + + + + + + + 1726911309511 + + + + + + \ No newline at end of file diff --git a/style.css b/style.css index b1a4e3b87..e5b7463ec 100644 --- a/style.css +++ b/style.css @@ -3,6 +3,6 @@ } .circle{ border-radius:50%; - width:300px; - height:300px; + width:500px; + height:500px; } From e57c32ae42b797de9079149eaf1a2fc46fea1b02 Mon Sep 17 00:00:00 2001 From: Olateju Ati-John Date: Sat, 21 Sep 2024 10:52:46 +0100 Subject: [PATCH 2/3] Jetbrains stuff --- .idea/vcs.xml | 6 ---- .idea/workspace.xml | 75 --------------------------------------------- 2 files changed, 81 deletions(-) delete mode 100644 .idea/vcs.xml delete mode 100644 .idea/workspace.xml diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 94a25f7f4..000000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml deleted file mode 100644 index 2d996b42b..000000000 --- a/.idea/workspace.xml +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - { - "lastFilter": { - "state": "OPEN", - "assignee": "TejjyMK" - } -} - { - "selectedUrlAndAccountId": { - "url": "https://github.com/TejjyMK/gkpbt-css-circle.git", - "accountId": "a63aa034-de8f-48c4-a3fb-5e6517dc6f11" - } -} - { - "associatedIndex": 7 -} - - - - - - - - - - - - - - - 1726911309511 - - - - - - \ No newline at end of file From 90d0d76532f834cd7771b4d560a74215c3773b66 Mon Sep 17 00:00:00 2001 From: Olateju Ati-John Date: Sat, 21 Sep 2024 12:06:41 +0100 Subject: [PATCH 3/3] added red color feature --- style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/style.css b/style.css index e5b7463ec..aa842f14b 100644 --- a/style.css +++ b/style.css @@ -6,3 +6,7 @@ width:500px; height:500px; } + +.red{ + background-color:red; +} \ No newline at end of file