summaryrefslogtreecommitdiff
path: root/public/assets
diff options
context:
space:
mode:
Diffstat (limited to 'public/assets')
-rw-r--r--public/assets/javascripts/ui/site/ProjectList.js2
-rwxr-xr-xpublic/assets/stylesheets/app.css15
-rw-r--r--public/assets/stylesheets/staff.css10
3 files changed, 20 insertions, 7 deletions
diff --git a/public/assets/javascripts/ui/site/ProjectList.js b/public/assets/javascripts/ui/site/ProjectList.js
index d772b20..959aa43 100644
--- a/public/assets/javascripts/ui/site/ProjectList.js
+++ b/public/assets/javascripts/ui/site/ProjectList.js
@@ -1,7 +1,7 @@
var ProjectList = View.extend({
- el: "#projectList",
+ el: ".projectList",
events: {
"mouseenter td.border": 'spinOn',
diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css
index 5922ab5..25bcf56 100755
--- a/public/assets/stylesheets/app.css
+++ b/public/assets/stylesheets/app.css
@@ -161,23 +161,25 @@ h5 {
text-align:center;
}
-.page .profile {
+.page.profile {
color:white;
}
-.page table {
+.page table.profilepage,
+.page table.projectList {
width: 100%;
border-top: 1px solid;
margin: 40px 0 0 0;
border-spacing: 0;
- clear:nboth;
+ clear: both;
}
-.page tr {
+.page table.profilepage tr,
+.page table.projectList tr {
height: 400px;
}
.page table.showcase {
height:70vh;
}
-.page table td.border {
+.page table.projectList td.border {
position: relative;
border-right: 1px solid;
}
@@ -191,7 +193,8 @@ iframe.embed {
z-index: -1;
pointer-events: none;
}
-.page table td {
+.page table.profilepage td,
+.page table.projectList td {
width: 33.3333%;
background-size: cover;
background-repeat: no-repeat;
diff --git a/public/assets/stylesheets/staff.css b/public/assets/stylesheets/staff.css
new file mode 100644
index 0000000..0208878
--- /dev/null
+++ b/public/assets/stylesheets/staff.css
@@ -0,0 +1,10 @@
+* {
+ font-weight: 300;
+}
+th, b {
+ font-weight: bold;
+}
+#users td {
+ text-align: left;
+ padding: 2px 5px;
+} \ No newline at end of file