diff --git a/css/styles.css b/css/styles.css index 143e902..ce97cee 100644 --- a/css/styles.css +++ b/css/styles.css @@ -4,4 +4,59 @@ body { textarea { margin-bottom: 10px; +} + +#auto-generation { + border-radius: 15px; + padding: 20px; + padding-bottom: 25px; + margin-top: 20px; + margin-bottom: 20px; + background: lightgray; + width: 100%; + max-width: 800px; + box-sizing: border-box; +} + +#github-url-form { + margin-top: 25px; + width: 100%; +} + +#repo-url { + width: 100%; + max-width: 750px; + box-sizing: border-box; +} + +#repo-url-button { + margin-top: 10px; + border-radius: 5px; +} + +#notification { + padding: 10px; + margin-bottom: 15px; + border-radius: 5px; + position: relative; + width: 100%; + max-width: 800px; + box-sizing: border-box; + animation: slideDown 0.3s ease; +} + +#notification-message { + margin: 0; + padding-right: 20px; +} + +@keyframes slideDown { + from { + opacity: 0; + transform: translateY(-10px); + } + to { + opacity: 1; + transform: translateY(0); + } } \ No newline at end of file diff --git a/index.html b/index.html index ed04630..a000991 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,6 @@
+ @@ -24,6 +25,7 @@ +