Skip to content

Commit

Permalink
tweak default markdown mail styles
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Feb 20, 2019
1 parent 76c3d4c commit e51d1f4
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions src/Illuminate/Mail/resources/views/html/themes/default.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* Base */

body, body *:not(html):not(style):not(br):not(tr):not(code) {
font-family: Avenir, Helvetica, sans-serif;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
box-sizing: border-box;
}

body {
background-color: #f5f8fa;
background-color: #F8FAFC;
color: #74787E;
height: 100%;
hyphens: auto;
Expand Down Expand Up @@ -40,31 +40,31 @@ a img {
/* Typography */

h1 {
color: #2F3133;
color: #3D4852;
font-size: 19px;
font-weight: bold;
margin-top: 0;
text-align: left;
}

h2 {
color: #2F3133;
color: #3D4852;
font-size: 16px;
font-weight: bold;
margin-top: 0;
text-align: left;
}

h3 {
color: #2F3133;
color: #3D4852;
font-size: 14px;
font-weight: bold;
margin-top: 0;
text-align: left;
}

p {
color: #74787E;
color: #3D4852;
font-size: 16px;
line-height: 1.5em;
margin-top: 0;
Expand All @@ -82,7 +82,7 @@ img {
/* Layout */

.wrapper {
background-color: #f5f8fa;
background-color: #F8FAFC;
margin: 0;
padding: 0;
width: 100%;
Expand Down Expand Up @@ -220,29 +220,29 @@ img {

.button-blue,
.button-primary {
background-color: #3097D1;
border-top: 10px solid #3097D1;
border-right: 18px solid #3097D1;
border-bottom: 10px solid #3097D1;
border-left: 18px solid #3097D1;
background-color: #3490DC;
border-top: 10px solid #3490DC;
border-right: 18px solid #3490DC;
border-bottom: 10px solid #3490DC;
border-left: 18px solid #3490DC;
}

.button-green,
.button-success {
background-color: #2ab27b;
border-top: 10px solid #2ab27b;
border-right: 18px solid #2ab27b;
border-bottom: 10px solid #2ab27b;
border-left: 18px solid #2ab27b;
background-color: #38C172;
border-top: 10px solid #38C172;
border-right: 18px solid #38C172;
border-bottom: 10px solid #38C172;
border-left: 18px solid #38C172;
}

.button-red,
.button-error {
background-color: #bf5329;
border-top: 10px solid #bf5329;
border-right: 18px solid #bf5329;
border-bottom: 10px solid #bf5329;
border-left: 18px solid #bf5329;
background-color: #E3342F;
border-top: 10px solid #E3342F;
border-right: 18px solid #E3342F;
border-bottom: 10px solid #E3342F;
border-left: 18px solid #E3342F;
}

/* Panels */
Expand All @@ -252,7 +252,7 @@ img {
}

.panel-content {
background-color: #EDEFF2;
background-color: #F1F5F8;
padding: 16px;
}

Expand Down

0 comments on commit e51d1f4

Please sign in to comment.