2018-08-09 00:44:55 +02:00
|
|
|
a.nostyle {
|
|
|
|
text-decoration: none;
|
|
|
|
color:inherit;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2018-02-14 17:56:19 +01:00
|
|
|
.project-card {
|
|
|
|
position: relative;
|
2018-08-09 00:41:54 +02:00
|
|
|
box-sizing: border-box;
|
2018-08-10 23:30:36 +02:00
|
|
|
border-radius: .15em;
|
2018-08-09 00:41:54 +02:00
|
|
|
border: 0 solid #048;
|
2018-08-10 23:30:36 +02:00
|
|
|
border-left-width: .3em;
|
|
|
|
box-shadow: 0 .1em .3em -.1em rgba(0,0,0,0.5);
|
2018-08-09 00:41:54 +02:00
|
|
|
overflow: hidden;
|
2018-08-10 23:30:36 +02:00
|
|
|
top: 0;
|
2018-08-09 00:41:54 +02:00
|
|
|
min-height: 6em;
|
2018-08-10 23:30:36 +02:00
|
|
|
margin: 0;
|
2018-08-09 00:41:54 +02:00
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-card:hover {
|
|
|
|
box-shadow: 0.1em 0.2em 0.5em 0em rgba(0,0,0,0.5);
|
2018-02-14 17:56:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.project-title {
|
|
|
|
padding-bottom: .1em;
|
|
|
|
margin: 0;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-content {
|
|
|
|
display: block;
|
2018-08-09 00:41:54 +02:00
|
|
|
margin: .6em;
|
|
|
|
margin-bottom: 0;
|
2018-02-14 17:56:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.card-content p {
|
|
|
|
line-height: 1.25em;
|
|
|
|
}
|
|
|
|
|
2018-08-09 00:41:54 +02:00
|
|
|
.card-content * {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2018-02-14 17:56:19 +01:00
|
|
|
.project-organizer {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0;
|
|
|
|
font-size: .8em;
|
2018-08-09 00:41:54 +02:00
|
|
|
text-align: right;
|
|
|
|
font-style: italic;
|
|
|
|
opacity: 0.5;
|
2018-08-14 02:53:11 +02:00
|
|
|
padding: 0.1em 0.4em;
|
2018-02-14 17:56:19 +01:00
|
|
|
}
|
|
|
|
|
2018-08-09 00:41:54 +02:00
|
|
|
.projects-container {
|
|
|
|
margin-top: 2em;
|
|
|
|
margin-bottom: 3em;
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
grid-column-gap: 0.5em;
|
|
|
|
grid-row-gap: 1.3em;
|
2018-02-14 17:56:19 +01:00
|
|
|
}
|
|
|
|
|
2018-08-09 00:41:54 +02:00
|
|
|
@media screen and (min-width: 60em) {
|
|
|
|
.projects-container {
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
}
|
2018-02-14 17:56:19 +01:00
|
|
|
}
|
|
|
|
|
2018-08-14 02:53:11 +02:00
|
|
|
@media screen and (min-width: 50rem) {
|
|
|
|
.contentsplit {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 17em 2.7fr;
|
|
|
|
grid-template-areas: "left right";
|
|
|
|
grid-column-gap: 0.9em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media screen and (max-width: 50rem) {
|
|
|
|
.contentsplit {
|
|
|
|
display: grid;
|
|
|
|
grid-template-rows: auto auto;
|
|
|
|
grid-template-areas: "right"
|
|
|
|
"left";
|
|
|
|
}
|
2018-08-23 16:05:20 +02:00
|
|
|
}
|
|
|
|
@media screen and (min-width: 33rem) and (max-width: 50rem) {
|
2018-08-14 02:53:11 +02:00
|
|
|
.projectmember-container {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
grid-template-rows: auto auto;
|
|
|
|
grid-template-areas: "organizers members"
|
|
|
|
"join join";
|
|
|
|
}
|
2018-02-24 19:41:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.gridl {
|
2018-08-09 00:41:54 +02:00
|
|
|
grid-area: left;
|
2018-02-24 19:41:57 +01:00
|
|
|
}
|
|
|
|
|
2018-08-14 02:53:11 +02:00
|
|
|
.projectmember-container {
|
|
|
|
padding: 0.1em 1em;
|
|
|
|
box-shadow: 0 2px 10px 0 rgba(0,0,0,0.2);
|
|
|
|
}
|
|
|
|
.projectmember-container h2 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.projectmember-container >form {
|
|
|
|
text-align: center;
|
|
|
|
grid-area: join;
|
|
|
|
}
|
|
|
|
|
2018-02-24 19:41:57 +01:00
|
|
|
.gridr {
|
|
|
|
border-left: 0;
|
2018-08-09 00:41:54 +02:00
|
|
|
grid-area: right;
|
2018-08-14 02:53:11 +02:00
|
|
|
padding:0;
|
|
|
|
margin:0;
|
2018-02-24 19:41:57 +01:00
|
|
|
}
|
|
|
|
|
2018-02-24 21:09:15 +01:00
|
|
|
.projectmember {
|
|
|
|
margin-bottom: 1em;
|
2018-02-24 19:41:57 +01:00
|
|
|
padding: 0 .5em 0 .5em;
|
|
|
|
overflow: hidden;
|
|
|
|
border-left: 4px solid #35a;
|
|
|
|
}
|
|
|
|
|
2018-02-24 21:09:15 +01:00
|
|
|
.projectmember p {
|
2018-02-24 19:41:57 +01:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2018-02-24 21:09:15 +01:00
|
|
|
.projectmember p {
|
2018-02-24 19:41:57 +01:00
|
|
|
font-size: .8em;
|
|
|
|
}
|
|
|
|
|
2018-02-24 21:09:15 +01:00
|
|
|
.projectmember p:first-child {
|
2018-02-24 19:41:57 +01:00
|
|
|
font-size: 1em;
|
|
|
|
margin-bottom: .2em;
|
|
|
|
}
|
|
|
|
|
2018-02-24 21:09:15 +01:00
|
|
|
.memberuname, .memberemail {
|
2018-02-24 19:41:57 +01:00
|
|
|
display: inline-block;
|
|
|
|
color: #888;
|
|
|
|
}
|
|
|
|
|
2018-02-24 21:09:15 +01:00
|
|
|
.memberuname {
|
2018-02-24 19:41:57 +01:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2018-02-24 21:09:15 +01:00
|
|
|
.memberemail {
|
2018-02-24 19:41:57 +01:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2018-02-14 17:56:19 +01:00
|
|
|
@media screen and (max-width: 50rem) {
|
|
|
|
.projects {
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
}
|
2018-08-09 00:41:54 +02:00
|
|
|
}
|
2018-08-14 03:25:24 +02:00
|
|
|
|
|
|
|
/* edit */
|
|
|
|
form .wide {
|
|
|
|
min-width: 66%;
|
|
|
|
}
|
|
|
|
form .tall {
|
|
|
|
min-height: calc(100vh - 28em);
|
|
|
|
}
|
|
|
|
@media screen and (max-width: 50rem) {
|
|
|
|
form .wide {
|
|
|
|
width: calc(100% - 2em);
|
|
|
|
margin: 0 1em;
|
|
|
|
}
|
|
|
|
}
|