diff --git a/index.html b/index.html index 5e127e0..7f92c6a 100644 --- a/index.html +++ b/index.html @@ -9,7 +9,7 @@ - + diff --git a/itworks.html b/itworks.html index 85b1711..eabd997 100644 --- a/itworks.html +++ b/itworks.html @@ -8,6 +8,6 @@

Welcome to F-Stopium!

-

Put extensions in ./extension. It uses a standard JS array format and uses URLs. Config is located at: ./config.json

+

Put extensions in ./extension. It uses a standard JS array format and uses URLs. Config is located at: ./config.json. Note: if you are using a pre-compiled version, these features are not available to you.

diff --git a/styles.css b/styles.css index 2b23da6..91743c1 100644 --- a/styles.css +++ b/styles.css @@ -1,3 +1,45 @@ /* styles.css */ -/* Add styles here to customize the appearance of your app */ \ No newline at end of file +/* Add styles here to customize the appearance of your app */ + +#goBtn { + background-color: #4CAF50; /* Green */ + border: none; + color: white; + padding: 1% 1%; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 3rem; +} + +#backBtn { + background-color: #f44336; /* Red */ + border: none; + color: white; + padding: 1% 1%; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 3rem; +} + +#forwardBtn { + background-color: #01315e; /* Blue */ + border: none; + color: white; + padding: 1% 1%; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 3rem; +} + +#txtUrl { + border: none; + padding: 1% 1%; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 3rem; +}