Spaces:
Runtime error
Runtime error
File size: 1,754 Bytes
9ec6060 947164f 9ec6060 947164f 9ec6060 947164f 9ec6060 947164f 9ec6060 947164f |
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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
@import url("https://fonts.googleapis.com/css?family=Merriweather|Open+Sans");
.container {
display: flex;
justify-content: center;
padding: 80px;
}
ul {
list-style-type: none;
display: flex;
float: none;
justify-content: center;
align-items: center;
padding-left: 30px;
padding-top: 10px;
}
#urllinks li {
padding: 0px 30px 5px 5px;
}
.square {
width: 700px;
background: white;
border-radius: 4px;
box-shadow: 0px 20px 50px #d9dbdf;
}
.mask {
width: 700px;
height: 65px;
clip: rect(0px, 700px, 150px, 0px);
border-radius: 4px;
position: absolute;
background-color: #b31b1b;
display: flex;
}
.mask .left,
.mask .right {
flex: 1;
}
img {
position: absolute;
width: 60px;
padding: 20px 0px 0px 0px;
margin-left: 30px;
}
.h1 {
margin: auto;
text-align: left;
margin-top: 90px;
padding-left: 30px;
font-family: "Merriweather", serif;
font-size: 22px;
}
h2 {
color: white;
text-align: right;
font-size: 14px;
padding: 22px 0px;
font-family: "Open Sans", sans-serif;
font-weight: 400;
margin-right: 30px;
}
p {
text-align: justify;
padding-left: 30px;
padding-right: 30px;
font-family: "Open Sans", sans-serif;
font-size: 12px;
color: #949494;
line-height: 18px;
padding-bottom: 30px;
padding-top: 30px;
}
.auth {
text-align: justify;
padding-left: 0px;
padding-right: 20px;
font-family: "Open Sans", sans-serif;
font-size: 14px;
line-height: 18px;
}
.button {
background-color: #b31b1b;
color: white;
width: 150px;
padding: 10px 10px;
border-radius: 3px;
text-align: center;
text-decoration: none;
display: block;
margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
font-size: 12px;
cursor: pointer;
font-family: "merriweather";
} |