jekyll-theme-csu-cs 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +21 -21
  3. data/README.md +456 -456
  4. data/_includes/clone.html +10 -10
  5. data/_includes/disqus_comments.html +20 -20
  6. data/_includes/footer.html +71 -71
  7. data/_includes/google-analytics.html +11 -11
  8. data/_includes/grading/wholeGradesOnly.html +30 -30
  9. data/_includes/head.html +29 -29
  10. data/_includes/header.html +75 -75
  11. data/_includes/helpdesk.html +109 -109
  12. data/_includes/icon-github.html +1 -1
  13. data/_includes/icon-github.svg +1 -1
  14. data/_includes/icon-twitter.html +1 -1
  15. data/_includes/icon-twitter.svg +1 -1
  16. data/_includes/policies/cheating.html +66 -66
  17. data/_includes/policies/copyrighted.html +6 -6
  18. data/_includes/policies/daca.html +4 -4
  19. data/_includes/policies/diversityStatement.html +2 -2
  20. data/_includes/policies/honorPledge.html +11 -11
  21. data/_includes/policies/netiquette.html +2 -2
  22. data/_includes/policies/policiesAll.html +99 -99
  23. data/_includes/policies/religious.html +13 -13
  24. data/_includes/policies/thirdParty.html +4 -4
  25. data/_includes/policies/title9.html +17 -17
  26. data/_includes/policies/universalDesign.html +34 -34
  27. data/_includes/resources/canvasTech.html +17 -17
  28. data/_includes/resources/counseling.html +4 -4
  29. data/_includes/resources/eclipse.html +27 -27
  30. data/_includes/resources/intelliJ.html +9 -9
  31. data/_includes/resources/randomJavaLinks.html +9 -9
  32. data/_includes/resources/teams.html +7 -7
  33. data/_includes/resources/tilt.html +7 -7
  34. data/_includes/resources/university.html +11 -11
  35. data/_includes/social.html +15 -15
  36. data/_layouts/default.html +22 -22
  37. data/_layouts/home.html +12 -12
  38. data/_layouts/lab.html +2 -2
  39. data/_layouts/page.html +20 -20
  40. data/_layouts/post.html +32 -32
  41. data/_sass/csu-default.scss +46 -46
  42. data/_sass/parts/_base.scss +534 -534
  43. data/_sass/parts/_calendar.scss +137 -137
  44. data/_sass/parts/_cloneInclude.scss +16 -16
  45. data/_sass/parts/_contactcard.scss +78 -78
  46. data/_sass/parts/_labs.scss +46 -46
  47. data/_sass/parts/_syntax-highlighting.scss +81 -81
  48. data/assets/img/ducky.png +0 -0
  49. data/assets/img/signature-mobile.svg +1 -1
  50. data/assets/img/signature-oneline.svg +1 -1
  51. data/assets/img/signature-stacked.svg +1 -1
  52. data/assets/main.scss +7 -7
  53. data/assets/minima-social-icons.svg +38 -38
  54. metadata +27 -28
@@ -1,138 +1,138 @@
1
- /* declare a 7 column grid on the table */
2
-
3
- .inset {
4
- padding: 20px 20px 20px 20px;
5
- }
6
-
7
-
8
- #help-desk {
9
- padding: 20px 20px 20px 20px;
10
- }
11
-
12
- #calendar {
13
- width: 100%;
14
- display: grid;
15
- grid-template-columns: repeat(8, 1fr);
16
- border: 0;
17
- }
18
-
19
- #calendar tr, #calendar tbody {
20
- grid-column: 1 / -1;
21
- display: grid;
22
- grid-template-columns: repeat(8, 1fr);
23
- width: 100%;
24
- }
25
-
26
- caption {
27
- text-align: center;
28
- grid-column: 1 / -1;
29
- font-size: 130%;
30
- font-weight: bold;
31
- padding: 10px 0;
32
- }
33
-
34
- #calendar a {
35
- color: $aggie;
36
- text-decoration: none;
37
- }
38
-
39
- #calendar .weekdays #time {
40
- background-color: white;
41
- color: $green;
42
-
43
- }
44
-
45
- #calendar .weekdays {
46
- background: $light-green;
47
- }
48
-
49
-
50
- #calendar .weekdays th {
51
- text-align: center;
52
- text-transform: uppercase;
53
- line-height: 20px;
54
- border: none !important;
55
- padding: 10px 6px;
56
- color: #fff;
57
- font-size: 13px;
58
- }
59
-
60
- #calendar td {
61
- display: flex;
62
- flex-direction: column;
63
- text-align: center;
64
- }
65
-
66
-
67
- td.time {
68
- vertical-align: bottom;
69
- text-align: center;
70
- }
71
-
72
- #calendar .open {
73
- background-color: $gold;
74
- font-weight: bold;
75
- color: $green;
76
- }
77
-
78
- #calendar .open a {
79
- color: $green;
80
- }
81
-
82
- #calendar .day {
83
- display:none;
84
- }
85
-
86
- /* ============================
87
- Mobile Responsiveness
88
- ============================*/
89
-
90
-
91
- @media(max-width: $on-palm) {
92
-
93
- #calendar .weekdays, #calendar .other-month {
94
- display: none;
95
- }
96
-
97
- #calendar li {
98
- height: auto !important;
99
- border: 1px solid #ededed;
100
- width: 100%;
101
- padding: 10px;
102
- margin-bottom: -1px;
103
- }
104
-
105
- #calendar, #calendar tr, #calendar tbody {
106
- grid-template-columns: 1fr;
107
- }
108
-
109
- #calendar tr {
110
- grid-column: 1 / 2;
111
- }
112
-
113
- #calendar td .day {
114
- text-align: center;
115
- padding: 4px;
116
- background: #333;
117
- color: #fff;
118
- width: 20px;
119
- border-radius: 50%;
120
- flex: 0 0 auto;
121
- align-self: flex-end;
122
- justify-content: right;
123
- display: inline;
124
- }
125
-
126
- #calendar .shift {
127
- align-self: center;
128
- justify-content: center;
129
- flex-grow: 1;
130
- }
131
-
132
- #calendar td {
133
- flex-direction: row;
134
- }
135
-
136
-
137
-
1
+ /* declare a 7 column grid on the table */
2
+
3
+ .inset {
4
+ padding: 20px 20px 20px 20px;
5
+ }
6
+
7
+
8
+ #help-desk {
9
+ padding: 20px 20px 20px 20px;
10
+ }
11
+
12
+ #calendar {
13
+ width: 100%;
14
+ display: grid;
15
+ grid-template-columns: repeat(8, 1fr);
16
+ border: 0;
17
+ }
18
+
19
+ #calendar tr, #calendar tbody {
20
+ grid-column: 1 / -1;
21
+ display: grid;
22
+ grid-template-columns: repeat(8, 1fr);
23
+ width: 100%;
24
+ }
25
+
26
+ caption {
27
+ text-align: center;
28
+ grid-column: 1 / -1;
29
+ font-size: 130%;
30
+ font-weight: bold;
31
+ padding: 10px 0;
32
+ }
33
+
34
+ #calendar a {
35
+ color: $aggie;
36
+ text-decoration: none;
37
+ }
38
+
39
+ #calendar .weekdays #time {
40
+ background-color: white;
41
+ color: $green;
42
+
43
+ }
44
+
45
+ #calendar .weekdays {
46
+ background: $light-green;
47
+ }
48
+
49
+
50
+ #calendar .weekdays th {
51
+ text-align: center;
52
+ text-transform: uppercase;
53
+ line-height: 20px;
54
+ border: none !important;
55
+ padding: 10px 6px;
56
+ color: #fff;
57
+ font-size: 13px;
58
+ }
59
+
60
+ #calendar td {
61
+ display: flex;
62
+ flex-direction: column;
63
+ text-align: center;
64
+ }
65
+
66
+
67
+ td.time {
68
+ vertical-align: bottom;
69
+ text-align: center;
70
+ }
71
+
72
+ #calendar .open {
73
+ background-color: $gold;
74
+ font-weight: bold;
75
+ color: $green;
76
+ }
77
+
78
+ #calendar .open a {
79
+ color: $green;
80
+ }
81
+
82
+ #calendar .day {
83
+ display:none;
84
+ }
85
+
86
+ /* ============================
87
+ Mobile Responsiveness
88
+ ============================*/
89
+
90
+
91
+ @media(max-width: $on-palm) {
92
+
93
+ #calendar .weekdays, #calendar .other-month {
94
+ display: none;
95
+ }
96
+
97
+ #calendar li {
98
+ height: auto !important;
99
+ border: 1px solid #ededed;
100
+ width: 100%;
101
+ padding: 10px;
102
+ margin-bottom: -1px;
103
+ }
104
+
105
+ #calendar, #calendar tr, #calendar tbody {
106
+ grid-template-columns: 1fr;
107
+ }
108
+
109
+ #calendar tr {
110
+ grid-column: 1 / 2;
111
+ }
112
+
113
+ #calendar td .day {
114
+ text-align: center;
115
+ padding: 4px;
116
+ background: #333;
117
+ color: #fff;
118
+ width: 20px;
119
+ border-radius: 50%;
120
+ flex: 0 0 auto;
121
+ align-self: flex-end;
122
+ justify-content: right;
123
+ display: inline;
124
+ }
125
+
126
+ #calendar .shift {
127
+ align-self: center;
128
+ justify-content: center;
129
+ flex-grow: 1;
130
+ }
131
+
132
+ #calendar td {
133
+ flex-direction: row;
134
+ }
135
+
136
+
137
+
138
138
  }
@@ -1,16 +1,16 @@
1
- /*
2
- Styles specific to the clone.html include
3
- */
4
- .gitClone {
5
- pre {
6
- margin-bottom: 0;
7
- padding-bottom: 0;
8
- }
9
-
10
- p {
11
- padding-bottom: 0;
12
- margin-bottom: 0;
13
- }
14
-
15
- }
16
-
1
+ /*
2
+ Styles specific to the clone.html include
3
+ */
4
+ .gitClone {
5
+ pre {
6
+ margin-bottom: 0;
7
+ padding-bottom: 0;
8
+ }
9
+
10
+ p {
11
+ padding-bottom: 0;
12
+ margin-bottom: 0;
13
+ }
14
+
15
+ }
16
+
@@ -1,79 +1,79 @@
1
- .page-content {
2
-
3
- .contact-card {
4
- display: block;
5
- margin-left: 0;
6
- margin-right: auto;
7
- width: 225px;
8
- border: solid 4px $green;
9
- min-height: 200px;
10
- box-shadow: 5px 5px 3px $gold;
11
- margin-top:20px;
12
- text-align: center;
13
- padding-left: 10px;
14
- padding-right: 10px;
15
- padding-bottom: 10px;
16
- padding-top: 10px;
17
-
18
- @media screen and (min-width: 1025px) {
19
-
20
- margin-top: 30px;
21
- }
22
-
23
- img {
24
- margin-left:auto;
25
- margin-right:auto;
26
- }
27
-
28
- @media screen and (max-width: 490px) {
29
- margin-left: auto;
30
- }
31
-
32
- @media screen and (min-width: 490px) {
33
- width: 450px;
34
-
35
-
36
- img {
37
- float: left;
38
- padding-right: 10px;
39
- }
40
- }
41
-
42
-
43
- h1 {
44
- margin-top: 0px;
45
- line-height: 1.2em;
46
- margin-bottom: 0px;
47
- padding-bottom: 0px;
48
- letter-spacing: 0.1em;
49
- }
50
-
51
- h2 {
52
- font-size: 1em;
53
- margin-left: 0px;
54
- margin-top: 0px;
55
- margin-bottom: 0px;
56
- margin-right: 0px;
57
- padding-top: 3px;
58
- padding-bottom: 3px;
59
- padding-right: 0px;
60
- padding-left: 0px;
61
- line-height: 1em;
62
- color: $black;
63
- }
64
-
65
- h2+p {
66
- margin-top: 10px;
67
- }
68
-
69
- p {
70
- margin-top: 0px;
71
- margin-bottom: 0px;
72
- padding-top:0px;
73
- padding-bottom: 0px;
74
- line-height: 1.3em;
75
- }
76
-
77
- } // end contact card
78
-
1
+ .page-content {
2
+
3
+ .contact-card {
4
+ display: block;
5
+ margin-left: 0;
6
+ margin-right: auto;
7
+ width: 225px;
8
+ border: solid 4px $green;
9
+ min-height: 200px;
10
+ box-shadow: 5px 5px 3px $gold;
11
+ margin-top:20px;
12
+ text-align: center;
13
+ padding-left: 10px;
14
+ padding-right: 10px;
15
+ padding-bottom: 10px;
16
+ padding-top: 10px;
17
+
18
+ @media screen and (min-width: 1025px) {
19
+
20
+ margin-top: 30px;
21
+ }
22
+
23
+ img {
24
+ margin-left:auto;
25
+ margin-right:auto;
26
+ }
27
+
28
+ @media screen and (max-width: 490px) {
29
+ margin-left: auto;
30
+ }
31
+
32
+ @media screen and (min-width: 490px) {
33
+ width: 450px;
34
+
35
+
36
+ img {
37
+ float: left;
38
+ padding-right: 10px;
39
+ }
40
+ }
41
+
42
+
43
+ h1 {
44
+ margin-top: 0px;
45
+ line-height: 1.2em;
46
+ margin-bottom: 0px;
47
+ padding-bottom: 0px;
48
+ letter-spacing: 0.1em;
49
+ }
50
+
51
+ h2 {
52
+ font-size: 1em;
53
+ margin-left: 0px;
54
+ margin-top: 0px;
55
+ margin-bottom: 0px;
56
+ margin-right: 0px;
57
+ padding-top: 3px;
58
+ padding-bottom: 3px;
59
+ padding-right: 0px;
60
+ padding-left: 0px;
61
+ line-height: 1em;
62
+ color: $black;
63
+ }
64
+
65
+ h2+p {
66
+ margin-top: 10px;
67
+ }
68
+
69
+ p {
70
+ margin-top: 0px;
71
+ margin-bottom: 0px;
72
+ padding-top:0px;
73
+ padding-bottom: 0px;
74
+ line-height: 1.3em;
75
+ }
76
+
77
+ } // end contact card
78
+
79
79
  }
@@ -1,47 +1,47 @@
1
- .embedded-video {
2
- width:400px;
3
- float:right;
4
- padding: 5px 5px 5px 5px;
5
- }
6
-
7
- .lab-image {
8
- width: 300px;
9
- border: 1px solid $light-green;
10
- }
11
-
12
- .float-right {
13
- float:right;
14
- margin-left: 15px;
15
- margin-bottom: 15px;
16
- }
17
-
18
- blockquote p {
19
- padding: 5px 10px 5px 10px;
20
- margin-bottom: 0px;
21
- background-color: $gold;
22
- clear:both;
23
- }
24
-
25
-
26
- blockquote:before, blockquote::after {
27
- content: none !important;
28
- }
29
-
30
- .image-instructions {
31
-
32
- figure {
33
- height: 100%;
34
- display: inline-block;
35
- padding-right: 5px;
36
-
37
- figcaption {
38
- font-size: 0.9em;
39
- text-align: center;
40
- }
41
- }
42
-
43
-
44
-
45
-
46
-
1
+ .embedded-video {
2
+ width:400px;
3
+ float:right;
4
+ padding: 5px 5px 5px 5px;
5
+ }
6
+
7
+ .lab-image {
8
+ width: 300px;
9
+ border: 1px solid $light-green;
10
+ }
11
+
12
+ .float-right {
13
+ float:right;
14
+ margin-left: 15px;
15
+ margin-bottom: 15px;
16
+ }
17
+
18
+ blockquote p {
19
+ padding: 5px 10px 5px 10px;
20
+ margin-bottom: 0px;
21
+ background-color: $gold;
22
+ clear:both;
23
+ }
24
+
25
+
26
+ blockquote:before, blockquote::after {
27
+ content: none !important;
28
+ }
29
+
30
+ .image-instructions {
31
+
32
+ figure {
33
+ height: 100%;
34
+ display: inline-block;
35
+ padding-right: 5px;
36
+
37
+ figcaption {
38
+ font-size: 0.9em;
39
+ text-align: center;
40
+ }
41
+ }
42
+
43
+
44
+
45
+
46
+
47
47
  }