Spaces:
Runtime error
Runtime error
EliottZemour
commited on
Commit
·
9ec6060
1
Parent(s):
39c29b5
aaa
Browse files- app.py +1 -1
- arxiv-logo.svg +1 -0
- csscard.css +101 -0
app.py
CHANGED
|
@@ -155,7 +155,7 @@ p {
|
|
| 155 |
<div class="square">
|
| 156 |
<div class="mask">
|
| 157 |
<h2 class="left">
|
| 158 |
-
<img src="
|
| 159 |
</h2>
|
| 160 |
<h2 class="right">http://arxiv.org/abs/2208.14178v1</h2>
|
| 161 |
</div>
|
|
|
|
| 155 |
<div class="square">
|
| 156 |
<div class="mask">
|
| 157 |
<h2 class="left">
|
| 158 |
+
<img src="arxiv-logo.svg" alt="arxiv logo">
|
| 159 |
</h2>
|
| 160 |
<h2 class="right">http://arxiv.org/abs/2208.14178v1</h2>
|
| 161 |
</div>
|
arxiv-logo.svg
ADDED
|
|
csscard.css
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@import url("https://fonts.googleapis.com/css?family=Merriweather|Open+Sans");
|
| 2 |
+
|
| 3 |
+
.container {
|
| 4 |
+
display: flex;
|
| 5 |
+
justify-content: center;
|
| 6 |
+
padding: 80px;
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
ul {
|
| 10 |
+
list-style-type: none;
|
| 11 |
+
display: flex;
|
| 12 |
+
float: none;
|
| 13 |
+
justify-content: center;
|
| 14 |
+
align-items: center;
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
#urllinks li {
|
| 18 |
+
padding: 0px 30px 5px 5px;
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
.square {
|
| 22 |
+
width: 700px;
|
| 23 |
+
background: white;
|
| 24 |
+
border-radius: 4px;
|
| 25 |
+
margin: auto;
|
| 26 |
+
box-shadow: 0px 20px 50px #d9dbdf;
|
| 27 |
+
}
|
| 28 |
+
|
| 29 |
+
.mask {
|
| 30 |
+
width: 700px;
|
| 31 |
+
height: 65px;
|
| 32 |
+
clip: rect(0px, 700px, 150px, 0px);
|
| 33 |
+
border-radius: 4px;
|
| 34 |
+
position: absolute;
|
| 35 |
+
background-color: #b31b1b;
|
| 36 |
+
display: flex;
|
| 37 |
+
}
|
| 38 |
+
|
| 39 |
+
.mask .left,
|
| 40 |
+
.mask .right {
|
| 41 |
+
flex: 1;
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
img {
|
| 45 |
+
width: 60px;
|
| 46 |
+
padding: 20px 30px;
|
| 47 |
+
}
|
| 48 |
+
|
| 49 |
+
.h1 {
|
| 50 |
+
margin: auto;
|
| 51 |
+
text-align: left;
|
| 52 |
+
margin-top: 90px;
|
| 53 |
+
padding-left: 30px;
|
| 54 |
+
font-family: "Merriweather", serif;
|
| 55 |
+
font-size: 22px;
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
h2 {
|
| 59 |
+
color: white;
|
| 60 |
+
text-align: center;
|
| 61 |
+
font-size: 14px;
|
| 62 |
+
padding: 10px 0px;
|
| 63 |
+
font-family: "Open Sans", sans-serif;
|
| 64 |
+
font-weight: 400;
|
| 65 |
+
}
|
| 66 |
+
|
| 67 |
+
p {
|
| 68 |
+
text-align: justify;
|
| 69 |
+
padding-left: 30px;
|
| 70 |
+
padding-right: 30px;
|
| 71 |
+
font-family: "Open Sans", sans-serif;
|
| 72 |
+
font-size: 12px;
|
| 73 |
+
color: #949494;
|
| 74 |
+
line-height: 18px;
|
| 75 |
+
}
|
| 76 |
+
|
| 77 |
+
.auth {
|
| 78 |
+
text-align: justify;
|
| 79 |
+
padding-left: 0px;
|
| 80 |
+
padding-right: 20px;
|
| 81 |
+
font-family: "Open Sans", sans-serif;
|
| 82 |
+
font-size: 14px;
|
| 83 |
+
line-height: 18px;
|
| 84 |
+
}
|
| 85 |
+
|
| 86 |
+
.button {
|
| 87 |
+
background-color: #b31b1b;
|
| 88 |
+
color: white;
|
| 89 |
+
width: 150px;
|
| 90 |
+
padding: 10px 10px;
|
| 91 |
+
border-radius: 3px;
|
| 92 |
+
text-align: center;
|
| 93 |
+
text-decoration: none;
|
| 94 |
+
display: block;
|
| 95 |
+
margin-top: 20px;
|
| 96 |
+
margin-left: 20px;
|
| 97 |
+
margin-right: 20px;
|
| 98 |
+
font-size: 12px;
|
| 99 |
+
cursor: pointer;
|
| 100 |
+
font-family: "merriweather";
|
| 101 |
+
}
|