Skip to content

Commit

Permalink
Merge pull request #146 from idugan100/styling_updates
Browse files Browse the repository at this point in the history
Styling updates
  • Loading branch information
idugan100 authored Jul 30, 2024
2 parents 2b7e999 + c9628b6 commit 5d2c2ea
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/build/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"isEntry": true
},
"resources/css/app.css": {
"file": "assets/app.ad2350b5.css",
"file": "assets/app.683c1dc0.css",
"src": "resources/css/app.css",
"isEntry": true
},
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/courseCard.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class=" contrast-125 group shadow-lg shadow-black bg-white hover:{{env("ACCENT_BG")}} rounded-lg m-2 p-5 ">
<h3 class=" text-2xl py-1 px-2 font-bold ">{{$course->courseTitle}}</h3>
<h3 class=" text-2xl py-1 px-2 font-bold group-hover:text-gray-300">{{$course->courseTitle}}</h3>
<hr class="border-1 {{env("MAIN_BORDER")}} ">

<h4 class="text-md py-1 px-2 m-2 group-hover:text-gray-300 font-bold">{{$course->departmentCode . "-" . $course->courseNumber}}</h4>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/professorCard.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class=" contrast-125 group shadow-lg shadow-black bg-white hover:{{env("ACCENT_BG")}} rounded-lg m-2 p-5 ">
<h3 class=" text-2xl py-1 px-2 font-bold ">{{$professor->firstName . " " . $professor->lastName }}</h3>
<h3 class=" text-2xl py-1 px-2 font-bold group-hover:text-gray-300 ">{{$professor->firstName . " " . $professor->lastName }}</h3>
<hr class="border-1 {{env("MAIN_BORDER")}} ">

<h4 class="text-md py-1 px-2 m-2 group-hover:text-gray-300 font-bold">{{$professor->department}}</h4>
Expand Down
4 changes: 2 additions & 2 deletions resources/views/privacy.blade.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<x-header>
<x-subHeader :title="'privacy policy'"/>
<div class="flex justify-center">
<div class="max-w-3xl bg-white mt-16 rounded-lg shadow-lg shadow-black p-2 divide-y-4 divide-red-800 divide-dotted">
<div class="max-w-3xl bg-white mt-16 rounded-lg shadow-lg shadow-black p-2 divide-y-4 divide-black divide-dotted">
<p class="text-2xl m-4 p-4">
Last Updated: 9/4/2023
</p>
<p class="text-2xl m-4 p-4">
Welcome to Salisbury Analytics. We respect your privacy and are committed to protecting your personal information.
Welcome to {{env("APP_NAME")}}. We respect your privacy and are committed to protecting your personal information.
This Privacy Policy explains how we collect, use, disclose, and safeguard your personal information.
By accessing or using our services, you consent to the practices described in this Privacy Policy.
</p>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/reports/financialoutcomes.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<x-header>
<x-subHeader title="financial outcomes"/>
<h3 class="text-center m-1">data on this page is specific to {{env("UNIVERSITY_NAME")}} graduates and is from the <a class="underline {{env("ACCENT_TEXT_COLOR")}}" href="https://collegescorecard.ed.gov/data/documentation/" target="_blank">department of education</a> </h3>
<h3 class="text-center m-1">data on this page is specific to {{env("UNIVERSITY_NAME")}} graduates and is from the <a class="underline {{env("ACCENT_TEXT_COLOR")}}" href="https://collegescorecard.ed.gov/data/api-documentation" target="_blank">department of education</a> </h3>


{{-- todo: add filter
Expand Down
2 changes: 1 addition & 1 deletion resources/views/reports/studentdemographics.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<x-header>
<x-subHeader title="student demographics"/>
<h3 class="text-center m-1">data on this page is specific to {{env("UNIVERSITY_NAME")}} and is from the <a class="underline {{env("ACCENT_TEXT_COLOR")}}" href="https://collegescorecard.ed.gov/data/documentation/" target="_blank">department of education</a> </h3>
<h3 class="text-center m-1">data on this page is specific to {{env("UNIVERSITY_NAME")}} and is from the <a class="underline {{env("ACCENT_TEXT_COLOR")}}" href="https://collegescorecard.ed.gov/data/api-documentation" target="_blank">department of education</a> </h3>
<div class="bg-white m-5 border-solid border-black p-4 border-4 rounded shadow" style="height: 350px;" >
<div id="GPAchart">
{{$ethnicity_chart->container()}}
Expand Down

0 comments on commit 5d2c2ea

Please sign in to comment.