-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from web-illinois/jonker/ils-xtwitter
Add xtwitter information
- Loading branch information
Showing
7 changed files
with
178 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
<html> | ||
<head> | ||
<title>Testing X icon</title> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="dns-prefetch" href="https://cdn.toolkit.illinois.edu"> | ||
<link rel="icon" href="https://cdn.brand.illinois.edu/favicon.ico"> | ||
<link rel="stylesheet" href="https://cdn.toolkit.illinois.edu/2.16/toolkit.css" media="all"> | ||
<script src="https://cdn.toolkit.illinois.edu/2.16/toolkit.js"></script> | ||
<link rel="stylesheet" href="//contrib.webtheme.illinois.edu/ils-xtwitter/xtwitter.min.css" media="all"> | ||
</head> | ||
|
||
<body> | ||
<il-footer> | ||
<div slot="contact" class="il-footer-contact uofi_address"> | ||
<p><a href="/" id="link-1">Animal Science</a></p> | ||
<p>174 Bevier Hall, MC-000</p> | ||
<p>905 S. Goodwin Ave</p> | ||
<p>Urbana, IL 61801</p> | ||
<p>217-333-3165</p> | ||
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p> | ||
</div> | ||
<div slot="social" class="il-footer-social"> | ||
<ul> | ||
<li><a href="https://www.instagram.com/educationillinois/">Instagram</a></li> | ||
<li><a href="https://www.facebook.com/educationatillinois?ref=ts">Facebook</a></li> | ||
<li><a href="https://twitter.com/edILLINOIS">Animal Science Twitter Account that is long</a></li> | ||
<li><a href="https://www.youtube.com/user/educationatillinois">Youtube</a></li> | ||
<li><a href="https://www.linkedin.com/in/educationatillinois">LinkedIn</a></li> | ||
</ul> | ||
</div> | ||
<div slot="parent" class="il-footer-parent"> | ||
<p><a href="#">College of Agricultural, Consumer and Environmental Sciences</a></p> | ||
<p><a href="#">Grainger College of Engineering</a></p> | ||
<p><a href="#">College of Education</a></p> | ||
</div> | ||
<div class="il-footer-navigation"> | ||
<div class="il-footer-navigation-column"> | ||
<nav aria-labelledby="dept-resources"> | ||
<h2 id="dept-resources">Department Resources:</h2> | ||
<ul> | ||
<li><a href="#">Faculty & Staff</a></li> | ||
<li><a href="#">Undergraduate Studies</a></li> | ||
<li><a href="#">Graduate Students</a></li> | ||
<li><a href="#">Give to Department</a></li> | ||
</ul> | ||
</nav> | ||
<nav aria-label="Campus Footer Links 2"> | ||
<h2>College Resources</h2> | ||
<ul> | ||
<li><a href="#">Contact ACES</a></li> | ||
<li><a href="#">About the College</a></li> | ||
<li><a href="#">Future Students</a></li> | ||
</ul> | ||
</nav> | ||
</div> | ||
<div class="il-footer-navigation-column"> | ||
<nav aria-labelledby="more-resources"> | ||
<h2 id="more-resources">More Resources:</h2> | ||
<ul> | ||
<li><a href="#">One</a></li> | ||
<li><a href="#">Two is a Really Really Long Item That Wraps Around</a></li> | ||
</ul> | ||
</nav> | ||
<nav aria-label="Campus Footer Links 4"> | ||
<h2>University of Illinois Long Title of Resources</h2> | ||
<ul> | ||
<li><a href="#">Admissions</a></li> | ||
<li><a href="#">Covid Resources</a></li> | ||
<li><a href="#">Graduate Students</a></li> | ||
<li><a href="#">Give to Department</a></li> | ||
</ul> | ||
</nav> | ||
</div> | ||
</div> | ||
<nav slot="links" class="il-footer-links" aria-label="Legal notices"> | ||
<ul> | ||
<li><button data-il="cookies"></button></li> | ||
<li><a data-il="privacy"></a></li> | ||
<li><a data-il="copyright"></a></li> | ||
<li><a data-il="accessibility"></a></li> | ||
<li><a href="#">College Bylaws</a></li> | ||
<li><a href="#">Login</a></li> | ||
</ul> | ||
</nav> | ||
</il-footer> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
var gulp = require('gulp'); | ||
var concat = require("gulp-concat"); | ||
var cssmin = require('gulp-cssmin'); | ||
|
||
gulp.task("styles", function () { | ||
return gulp.src(['ils-xtwitter/xtwitter.css']) | ||
.pipe(cssmin()) | ||
.pipe(concat("xtwitter.min.css")) | ||
.pipe(gulp.dest("ils-xtwitter/")); | ||
}); | ||
|
||
gulp.task("ils-xtwitter", gulp.series("styles")); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# ils-xtwitter | ||
|
||
Changes the twitter bird logo to the "X" logo in the footer. Also has the xtwitter.jpg and xtwitter.svg icons. | ||
|
||
## Author | ||
|
||
[email protected] | ||
|
||
## State | ||
|
||
Development | ||
|
||
## Dependencies and Examples | ||
|
||
Requires Illinois Toolkit, v2. | ||
|
||
Required code to use: | ||
|
||
<link rel="stylesheet" href="//contrib.webtheme.illinois.edu/ils-xtwitter/xtwitter.min.css" media="all"> | ||
|
||
## Userlist | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
.il-footer-social a[href*="twitter.com/"]::before { | ||
content: ''; | ||
display: block; | ||
width: 35px; | ||
height: 30px; | ||
margin-top: 9px; | ||
background-color: white; | ||
-webkit-mask-image: url(//contrib.webtheme.illinois.edu/ils-xtwitter/xtwitter.svg); | ||
mask-image: url(//contrib.webtheme.illinois.edu/ils-xtwitter/xtwitter.svg); | ||
} | ||
|
||
.il-footer-social a[href*="twitter.com/"]:hover::before, .il-footer-social a[href*="twitter.com/"]:focus::before { | ||
background-color: var(--il-orange); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.