INIT: plain phx 1.5 init, untouched

This commit is contained in:
Matthew Ryan Dillon 2020-06-13 11:47:28 -07:00
commit 9903d4271b
49 changed files with 9878 additions and 0 deletions

31
assets/css/app.scss Normal file
View file

@ -0,0 +1,31 @@
/* This file is for your main application css. */
@import "./phoenix.css";
/* Alerts and form errors */
.alert {
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
}
.alert-info {
color: #31708f;
background-color: #d9edf7;
border-color: #bce8f1;
}
.alert-warning {
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #faebcc;
}
.alert-danger {
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
}
.alert p {
margin-bottom: 0;
}
.alert:empty {
display: none;
}

101
assets/css/phoenix.css Normal file

File diff suppressed because one or more lines are too long