Skip to content

Commit

Permalink
Deploying to gh-pages from @ bd5f4c5 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-r-bigelow committed Sep 15, 2023
1 parent d3fb857 commit 20e5b43
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 6 deletions.
32 changes: 26 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ <h1 class="mt-0">
</strong>
</h1>
<a
class="bg-orange-500 hover:bg-orange-600 font-bold py-2 px-4 rounded"
class="bg-orange-500 hover:bg-orange-600 visited:bg-orange-700 !text-white font-bold py-2 px-4 rounded"
href="https://researchbazaar.arizona.edu/resbaz/Arizona2023/"
>
ResBaz AZ 2023 Festival
Expand All @@ -150,17 +150,37 @@ <h3>Community Building</h3>
<p>Meet new people in and outside of your field. Join our supportive network of data scientists and find out what we can do when we work together.</p>
<h2>Events</h2>
<p><em>Stay up to date on announcements at our Twitter: <a href="https://twitter.com/ResBazAZ">@ResBazAZ</a></em></p>
<p><em>RSVP for our events at Meetup: <a href="https://www.meetup.com/ResBazAZ/">Our MeetUp</a></em></p>
<p><em>(Optionally) RSVP for our events at Meetup: <a href="https://www.meetup.com/ResBazAZ/">Our MeetUp</a></em></p>
<h3>Coffee and Code</h3>
<p><strong>Where</strong>: <a href="https://union.arizona.edu/dining/other/slotcanyon">Slot Canyon Cafe in ENR2</a></p>
<div class="split-section">
<div class="side-image">
<img src="/static/img/coffeeAndCode.png">
</div>
<div>
<p><strong>Where</strong>: <a href="https://union.arizona.edu/dining/dining-by-district/north/#Catalyst%20Caf%C3%A9">Catalyst Cafe at BSRL</a> 1230 N Cherry Ave</p>
<p><strong>When</strong>: 8.30AM - 10.30AM, every Wednesday</p>
<p><strong>What</strong>: Whether you're debugging code or need ideas for how to introduce programming into your research, Coffee and Code is a great place to receive help and share knowledge! No specific problem? No worries -- join us at Coffee and Code to chit chat with other researchers in the morning. Coffee and Code is the best way to start your Wednesday!</p>
</div>
</div>
<h3>Hacky Hour</h3>
<p><strong>Where</strong>: Snakes &amp; Lattes (University Blvd)</p>
<div class="split-section">
<div>
<p><strong>Where</strong>: <a href="https://www.snakesandlattes.com/tucson">Snakes &amp; Lattes</a> 988 E University Blvd</p>
<p><strong>When</strong>: 4PM - 7PM, every Thursday</p>
<p><strong>What</strong>: Hacking + Happy Hour = HackyHour! Every week, researchers, data scientists, and programmers around campus get together. Some people bring their programming problems to get help from those with more experience. Those without projects come to discuss their research, brainstorm new ideas, try out new technologies, or chit chat about data science!</p>
<h3>Related Community Events</h3>
<p><strong>Tucson Python Meetup</strong>: The goal of this group is to encourage more mingling, learning, and sharing ideas within the Tucson Python community. Everybody is welcome, no matter what your level of Python experience. Activities include presentations and workshops on everything from how to use Python to control the lights in your home, to building web applications which can scale to millions of users. For more information, see: <a href="https://www.meetup.com/Tucson-Python-Meetup/">https://www.meetup.com/Tucson-Python-Meetup/</a></p>
</div>
<div class="side-image">
<img src="/static/img/hackyHour.png">
</div>
</div>
<h2>Related Community Events</h2>
<h3>Code Commons</h3>
<p><strong>What</strong>: Code Commons provides a physical space for community and collaboration. Join us to share experience, learn, mentor, discover opportunities, and work on your programming projects in the presence of others doing the same.</p>
<p>Code Commons also aims to provide the best aspects of workplace culture for people who are otherwise isolated from other developers. This includes (but isn’t limited to) people working on free, libre, open-source software (FLOSS), and software for public service missions.</p>
<p><a href="https://codecommons.net/">More Info</a></p>
<h3>Tucson Python Meetup</h3>
<p><strong>What</strong>: The goal of this group is to encourage more mingling, learning, and sharing ideas within the Tucson Python community. Everybody is welcome, no matter what your level of Python experience. Activities include presentations and workshops on everything from how to use Python to control the lights in your home, to building web applications which can scale to millions of users.</p>
<p><a href="https://www.meetup.com/Tucson-Python-Meetup/">More Info</a></p>
<h2>TODO: finish and delete this stuff</h2>
<ul>
<li>Port Styles</li>
Expand Down
32 changes: 32 additions & 0 deletions static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1412,6 +1412,11 @@ video {
line-height: 1.5rem;
}

.\!text-white{
--tw-text-opacity: 1 !important;
color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}

.text-gray-500{
--tw-text-opacity: 1;
color: rgb(107 114 128 / var(--tw-text-opacity));
Expand Down Expand Up @@ -1515,6 +1520,20 @@ h3{
font-weight: 100;
}

a{
--tw-text-opacity: 1;
color: rgb(249 115 22 / var(--tw-text-opacity));
}

a:visited{
color: rgb(194 65 12 );
}

a:hover{
--tw-text-opacity: 1;
color: rgb(234 88 12 / var(--tw-text-opacity));
}

/* Syntax Highlighting*/

body :not(pre) > code[class*='language-'],
Expand Down Expand Up @@ -1550,6 +1569,15 @@ body pre[class*='language-']{
color: white;
}

.main-page .split-section {
display: flex;
gap: 1em;
}

.main-page .side-image {
width: 50em;
}

@media (min-width: 1024px){
.lg\:prose-xl{
font-size: 1.25rem;
Expand Down Expand Up @@ -1799,6 +1827,10 @@ body pre[class*='language-']{
}
}

.visited\:bg-orange-700:visited{
background-color: rgb(194 65 12 );
}

.hover\:border-purple-400:hover{
--tw-border-opacity: 1;
border-color: rgb(192 132 252 / var(--tw-border-opacity));
Expand Down
Binary file added static/img/coffeeAndCode.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/hackyHour.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 20e5b43

Please sign in to comment.