Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/frontend' into frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
GandalFran committed Oct 20, 2019
2 parents f2e792d + 297f543 commit f2542df
Show file tree
Hide file tree
Showing 48 changed files with 57,241 additions and 18 deletions.
Binary file modified .DS_Store
Binary file not shown.
1,304 changes: 1,304 additions & 0 deletions Donation_Form_92922334419358_source/Donation_Form.html

Large diffs are not rendered by default.

99 changes: 99 additions & 0 deletions Donation_Form_92922334419358_source/css/calendarview.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
div.calendar
{
color: #000;
font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;
-moz-box-shadow:0px 0px 8px rgba(0, 0, 0, 0.5);
-webkit-box-shadow:0px 0px 8px rgba(0, 0, 0, 0.5);
box-shadow:0px 0px 8px rgba(0, 0, 0, 0.5);

}

div.calendar.popup
{
margin-left: -40px;
margin-top: -100px;
z-index:100000;
}
div.calendar td.weekend{
background:#b5cfe9;
}
div.calendar .today{
background: #f9621a !important;
}
div.calendar .title, div.calendar .button{
color:#f9621a;
}
div.calendar table
{
background-color: #eee;
border: 1px solid #aaa;
border-collapse: collapse;
}

div.calendar thead {
background-color: white;
}

div.calendar td,
div.calendar th
{
font-size: 11px;
padding: 3px;
text-align: center;
}

div.calendar td.title
{
font-weight: bold;
}

div.calendar th
{
background: #ddd;
border-bottom: 1px solid #ccc;
border-top: 1px solid #ccc;
font-weight: bold;
color: #555;
}

div.calendar tr.days td {
width: 2em;
color: #555;
text-align: center;
cursor: pointer;
}

div.calendar tr.days td:hover:not(.unselectable),
div.calendar td.button:hover:not(.unselectable)
{
background-color: #34ABFA;
cursor: pointer;
}

.unselectable {
cursor: default !important;
}

div.calendar tr.days td:active
div.calendar td.button:active
{
background-color: #cde;
}

div.calendar tr.days td.selected
{
font-weight: bold;
background-color: #fff;
color: #000;
}

div.calendar tr.days td.today
{
font-weight: bold;
color: #D50000;
}

div.calendar tr.days td.otherDay
{
color: #bbb;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
/********* Simple Blue **********/

.form-submit-button-simple_blue{

cursor: pointer;

-moz-border-radius:.5em;
-webkit-border-radius:.5em;
border-radius:.5em;

padding:8px 18px;

color: #ffffff !important;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: bold;
text-shadow:-1px -1px 0px #003ea1;

border:1px solid #0d4aab !important;

-moz-box-shadow:inset 0px 1px 0px 0px #97c4fe;
-webkit-box-shadow:inset 0px 1px 0px 0px #97c4fe;
box-shadow:inset 0px 1px 0px 0px #97c4fe;

background: #1e62d0; /* old browsers */
background: -moz-linear-gradient(top, #3d94f6 0%, #1e62d0 100%); /* firefox */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3d94f6), color-stop(100%,#1e62d0)); /* webkit */
background: linear-gradient(top, #3d94f6 0%, #1e62d0 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3d94f6', endColorstr='#1e62d0', GradientType=0 ); /* ie */
}

.form-submit-button-simple_blue:hover{

color: #ffffff !important;
border:1px solid #0d4aab !important;
background: #2e7be3; /* old browsers */
background: -moz-linear-gradient(top, #54a2f9 0%, #2e7be3 100%); /* firefox */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#54a2f9), color-stop(100%,#2e7be3)); /* webkit */
background: linear-gradient(top, #54a2f9 0%, #2e7be3 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#54a2f9', endColorstr='#2e7be3', GradientType=0 ); /* ie */
}

.form-submit-button-simple_blue:active{
color: #ffffff !important;
border:1px solid #0d4aab !important;
position: relative;
top: 1px;
background: #2e7be3; /* old browsers */
background: -moz-linear-gradient(top, #2e7be3 0%, #54a2f9 100%); /* firefox */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2e7be3), color-stop(100%,#54a2f9)); /* webkit */
background: linear-gradient(top, #2e7be3 0%, #54a2f9 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2e7be3', endColorstr='#54a2f9', GradientType=0 ); /* ie */
}
Loading

0 comments on commit f2542df

Please sign in to comment.