Skip to content
Permalink
7f34d01102
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
146 lines (146 sloc) 2.18 KB
.content_main {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr 0.5fr 0.5fr 1fr 0.5fr 1fr 0.5fr auto 0.5fr 0.5fr 1fr 0.5fr 1fr;
grid-template-areas:
'p_title p_title p_title p_title'
'. . . .'
'ID name p_pic p_pic'
'ID1 name1 p_pic p_pic'
'date type p_pic p_pic'
'date1 type1 p_pic p_pic'
'colorr weight p_pic p_pic'
'updates updates p_pic p_pic'
'. . . .'
'city tcal cal speed'
'city1 tcal1 cal1 speed1'
'street tdist dist .'
'street1 tdist1 dist1 .';
}
.p_title {
grid-area: p_title;
text-align: center;
font-size: 5vw;
}
.p_pic {
grid-area: p_pic;
display: grid;
justify-items: center;
}
.p_pic img {
object-fit: cover;
width: 70%;
max-height: 100%;
}
.label {
font-size: 2vw;
}
.info {
font-size: 3vw;
}
.ID {
grid-area: ID;
}
.name {
grid-area: name;
}
.date {
grid-area: date;
}
.color {
grid-area: colorr;
}
.weight {
grid-area: weight;
}
.updates {
grid-area: updates;
}
.updates form {
grid-area: updates;
display: grid;
grid-template-columns: 2fr 1fr 1fr;
grid-template-rows: auto;
grid-template-areas:
'colorr1 weight1 submit';
}
.city {
grid-area: city;
}
.street {
grid-area: street;
}
.cal {
grid-area: cal;
}
.type {
grid-area: type;
}
.speed {
grid-area: speed;
}
.dist {
grid-area: dist;
}
.tdist {
grid-area: tdist;
}
.tcal {
grid-area: tcal;
}
.ID1 {
grid-area: ID1;
}
.name1 {
grid-area: name1;
}
.date1 {
grid-area: date1;
}
.submit {
grid-area: submit;
}
.submit button{
font-size: 1.5vw;
}
.weight1 {
display: grid;
align-content: center;
grid-area: weight1;
}
.color1 {
display: grid;
align-content: center;
grid-area: colorr1;
}
.weight1 input{
width: 70%;
}
.color1 input{
height: 3vw;
width: 30%;
}
.city1 {
grid-area: city1;
}
.street1 {
grid-area: street1;
}
.cal1 {
grid-area: cal1;
}
.tcal1 {
grid-area: tcal1;
}
.type1 {
grid-area: type1;
}
.speed1 {
grid-area: speed1;
}
.dist1 {
grid-area: dist1;
}
.tdist1 {
grid-area: tdist1;
}