summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatthewsotoudeh <matthewsot@outlook.com>2014-08-31 10:33:04 -0700
committermatthewsotoudeh <matthewsot@outlook.com>2014-08-31 10:33:04 -0700
commit78374df0507ed6a7bb3777319df38331a672fee3 (patch)
tree63b1d948d63909fb97e164d6374436910ffd670c
parent8352021adae64a274b42c2712ac1e5f1fbddfe59 (diff)
added thankyou.css
-rw-r--r--.gitignore1
-rw-r--r--Classfinder/Classfinder/Content/Styles/Site/Default/thankyou.css85
2 files changed, 86 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 10675b5..2f4242c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -194,3 +194,4 @@ Classfinder/Classfinder/Content/Styles/**/*.css.map
!Classfinder/Classfinder/Content/Styles/bootstrap.min.css
!Classfinder/Classfinder/Content/Styles/Site.css
+!Classfinder/Classfinder/Content/Styles/Site/Default/thankyou.css \ No newline at end of file
diff --git a/Classfinder/Classfinder/Content/Styles/Site/Default/thankyou.css b/Classfinder/Classfinder/Content/Styles/Site/Default/thankyou.css
new file mode 100644
index 0000000..b7b8de5
--- /dev/null
+++ b/Classfinder/Classfinder/Content/Styles/Site/Default/thankyou.css
@@ -0,0 +1,85 @@
+/* Seriously guys, thanks so much for the support this year :D */
+/* An extra shoutout to all the users, you guys are awesome! */
+
+/* If you'd like to help build Classfinder, checkout our Github page */
+/* https://github.com/matthewsot/classfinder */
+
+body, html {
+ font-family: 'Lato', sans-serif;
+ text-align: center;
+ width: 100%;
+ margin: 0;
+ background-image: url('/Content/Images/stars.jpg'); /* from https://www.youtube.com/watch?v=Cmqz-TeuaNM */
+ background-size:cover;
+ color: #fff;
+ font-weight: 400;
+ padding-bottom: 50px;
+}
+
+h1, h2, h3 {
+ margin: 0;
+ font-weight: 300;
+}
+
+h1 {
+ font-size: 55px;
+ color: #1ccfaf;
+}
+
+h2 {
+ font-size: 45px;
+ color: #1ccfaf;
+}
+
+h3 {
+ font-size: 25px;
+ color: #fff;
+ margin-top: 25px;
+ margin-bottom: 25px;
+}
+
+.title {
+ margin-top: 50px;
+ margin-bottom: 30px;
+}
+
+
+.bubbles {
+ margin-top: 50px;
+ margin-bottom: 50px;
+}
+ .bubbles .bubble {
+ width: 30%;
+ text-align: center;
+ display: inline-block;
+ position: relative;
+ }
+ .bubbles .bubble:first-child {
+ float: left;
+ }
+ .bubbles .bubble:nth-child(2) {
+ float: none;
+ }
+ .bubbles .bubble:last-child {
+ float: right;
+ }
+
+img {
+ margin-top: 25px;
+ border: none;
+}
+
+a {
+ border: none;
+ text-decoration: none;
+}
+
+@media all and (max-width:450px) {
+ .bubbles .bubble {
+ display:block;
+ margin: 0 auto;
+ }
+ .bubbles .bubble:nth-child(n) {
+ float: none;
+ }
+} \ No newline at end of file
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback