Spaces:
Runtime error
Runtime error
EliottZemour
commited on
Commit
•
947164f
1
Parent(s):
48af5a6
update css
Browse files- app.py +1 -0
- csscard.css +28 -22
app.py
CHANGED
@@ -43,6 +43,7 @@ html = """<head>
|
|
43 |
|
44 |
<link href="file/csscard.css" rel="stylesheet" type="text/css"/>
|
45 |
|
|
|
46 |
</head>
|
47 |
|
48 |
<body>
|
|
|
43 |
|
44 |
<link href="file/csscard.css" rel="stylesheet" type="text/css"/>
|
45 |
|
46 |
+
|
47 |
</head>
|
48 |
|
49 |
<body>
|
csscard.css
CHANGED
@@ -7,11 +7,13 @@
|
|
7 |
}
|
8 |
|
9 |
ul {
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
|
|
|
|
15 |
}
|
16 |
|
17 |
#urllinks li {
|
@@ -22,7 +24,6 @@ ul {
|
|
22 |
width: 700px;
|
23 |
background: white;
|
24 |
border-radius: 4px;
|
25 |
-
margin: auto;
|
26 |
box-shadow: 0px 20px 50px #d9dbdf;
|
27 |
}
|
28 |
|
@@ -42,8 +43,10 @@ ul {
|
|
42 |
}
|
43 |
|
44 |
img {
|
45 |
-
|
46 |
-
|
|
|
|
|
47 |
}
|
48 |
|
49 |
.h1 {
|
@@ -56,22 +59,25 @@ img {
|
|
56 |
}
|
57 |
|
58 |
h2 {
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
|
|
65 |
}
|
66 |
|
67 |
p {
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
|
|
|
|
75 |
}
|
76 |
|
77 |
.auth {
|
@@ -98,4 +104,4 @@ p {
|
|
98 |
font-size: 12px;
|
99 |
cursor: pointer;
|
100 |
font-family: "merriweather";
|
101 |
-
}
|
|
|
7 |
}
|
8 |
|
9 |
ul {
|
10 |
+
list-style-type: none;
|
11 |
+
display: flex;
|
12 |
+
float: none;
|
13 |
+
justify-content: center;
|
14 |
+
align-items: center;
|
15 |
+
padding-left: 30px;
|
16 |
+
padding-top: 10px;
|
17 |
}
|
18 |
|
19 |
#urllinks li {
|
|
|
24 |
width: 700px;
|
25 |
background: white;
|
26 |
border-radius: 4px;
|
|
|
27 |
box-shadow: 0px 20px 50px #d9dbdf;
|
28 |
}
|
29 |
|
|
|
43 |
}
|
44 |
|
45 |
img {
|
46 |
+
position: absolute;
|
47 |
+
width: 60px;
|
48 |
+
padding: 20px 0px 0px 0px;
|
49 |
+
margin-left: 30px;
|
50 |
}
|
51 |
|
52 |
.h1 {
|
|
|
59 |
}
|
60 |
|
61 |
h2 {
|
62 |
+
color: white;
|
63 |
+
text-align: right;
|
64 |
+
font-size: 14px;
|
65 |
+
padding: 22px 0px;
|
66 |
+
font-family: "Open Sans", sans-serif;
|
67 |
+
font-weight: 400;
|
68 |
+
margin-right: 30px;
|
69 |
}
|
70 |
|
71 |
p {
|
72 |
+
text-align: justify;
|
73 |
+
padding-left: 30px;
|
74 |
+
padding-right: 30px;
|
75 |
+
font-family: "Open Sans", sans-serif;
|
76 |
+
font-size: 12px;
|
77 |
+
color: #949494;
|
78 |
+
line-height: 18px;
|
79 |
+
padding-bottom: 30px;
|
80 |
+
padding-top: 30px;
|
81 |
}
|
82 |
|
83 |
.auth {
|
|
|
104 |
font-size: 12px;
|
105 |
cursor: pointer;
|
106 |
font-family: "merriweather";
|
107 |
+
}
|