diff options
-rw-r--r-- | index.html | 3 | ||||
-rw-r--r-- | style.css | 7 |
2 files changed, 8 insertions, 2 deletions
diff --git a/index.html b/index.html index da56464..6ff586e 100644 --- a/index.html +++ b/index.html @@ -25,8 +25,7 @@ <div id="majornote"> <p>I'm currently messing around with my CSS. If you want to see a demonstration of a unusable website, come to the <a href="/lovely">test site</a>.</p> </div> - <div id="project-help"> - <h2><span class="alert">Project Help</span></h2> + <div id="myproject"> <p>I need a hand with some of my projects. If you can, please look in their repositories. Any ideas would work.</p> <p><a href="https://git.andrewyu.org/">https://git.andrewyu.org</a> contains the git bare repositories. <a href="https://project.andrewyu.org">https://project.andrewyu.org</a> contains the project pages. Usually, their corresponding URLs match with each other (except for the subdomain).</p> <ul> diff --git a/style.css b/style.css index 6b71aa5..e36c14d 100644 --- a/style.css +++ b/style.css @@ -76,6 +76,13 @@ a:active { border: 3px dashed lime; transition: all 0.5s; } +#myproject { + font-size: 120%; + color: orange; + display: block; + border: 3px dashed orange; + transition: padding 1s, font-size 1s; +} #campaign { font-size: 120%; color: red; |