My Whole Rails App bekommt CSS nur aus einer Datei warum

Ich hatte verschiedene CSS-Dateien für beide Controller hinzugefügt, aber meine gesamte App nimmt nur CSS aus demproduct.css

Ich hatte verschiedene CSS-Dateien für beide Controller hinzugefügt, aber meine gesamte App nimmt nur CSS aus demproduct.css Ich hatte verschiedene CSS-Dateien für beide Controller hinzugefügt, aber meine gesamte App nimmt nur CSS aus demproduct.css

products.css

body {
    font-size: 11px;
    font-family: 'Open Sans', sans-serif;
    color: #4A4A4A ;
    text-align: center;
}

.wrap {
    background: #fff;
    margin: 20px auto;
    display: block;
    width: 300px;
    height: 380px;
    padding:20px;
    border-radius: 2px 2px 2px 2px; 
    -webkit-box-shadow: 0 1px 4px 
    rgba(0, 0, 0, 0.3), 0 0 40px 
    rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 1px 4px 
    rgba(0, 0, 0, 0.3), 0 0 40px 
    rgba(0, 0, 0, 0.1) inset;
    float: left;
    margin-right: 29px;
}

.wrap img {
    width: 100%;
    margin-top: 15px;
}

p{ 
    margin-top: 15px;
    text-align: justify;
}

h1{
    font-size: 20px;
    font-weight: bold;
    margin-top: 5px; 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

a{
    text-decoration: none;
    color: #4A4A4A !important;
}

a:hover{
    text-decoration: underline;
    color: #6B6B6B !important ;
}

**

Antworten auf die Frage(2)

Ihre Antwort auf die Frage