File size: 956 Bytes
4d2184b aafb1c7 4d2184b db8c1ea aa76eee 3033073 4d2184b cfbf90f b4824b8 3033073 b4824b8 da18f66 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
body {
padding: 2rem;
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
}
h1 {
margin-top: 0;
color:white;
background:blue;
border-radius:10px;
padding:5px;
text-align:center;
box-shadow: 1px 2px 4px 2px black;
}
p {
color: rgb(107, 114, 128);
font-size: 15px;
margin-bottom: 10px;
margin-top: 5px;
}
.card {
margin: 0 auto;
padding: 16px;
border: 3px solid lightgray;
border-radius: 16px;
background: cornflowerblue;
font-size: x-small;
overflow: hidden;
text-overflow: ellipsis;
word-wrap: break-word;
display: flex;
flex-direction: column;
align-items: center;
align-content: center;
width: 500px;
max-width: 100%;
}
}
.card p:last-child {
margin-bottom: 0;
}
#link_class {
padding: 5px;
border-radius: 5px;
background: aliceblue;
width: 100%;
margin: 2px;
text-decoration: none;
font-family: system-ui;
}
}
|