Spaces:
Runtime error
Runtime error
Isabel Gwara
commited on
Commit
·
ed07a1c
1
Parent(s):
7616cfa
Create app.css
Browse files
app.css
ADDED
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.box {
|
2 |
+
border: 2px solid black;
|
3 |
+
text-align: center;
|
4 |
+
margin: 10px;
|
5 |
+
padding: 5%;
|
6 |
+
}
|
7 |
+
ul {
|
8 |
+
display: inline-block;
|
9 |
+
text-align: left;
|
10 |
+
}
|
11 |
+
img {
|
12 |
+
display: block;
|
13 |
+
margin: auto;
|
14 |
+
}
|
15 |
+
.description {
|
16 |
+
text-align: center;
|
17 |
+
}
|
18 |
+
.panel_button {
|
19 |
+
display: block !important;
|
20 |
+
width: 100% !important;
|
21 |
+
background-color: #00EACD !important;
|
22 |
+
color: #000;
|
23 |
+
transition: all .2s ease-out 0s !important;
|
24 |
+
box-shadow: 0 10px #00AEAB !important;
|
25 |
+
border-radius: 10px !important;
|
26 |
+
}
|
27 |
+
.panel_button:hover {
|
28 |
+
box-shadow: 0 5px #00AEAB;
|
29 |
+
transform: translateY(5px);
|
30 |
+
}
|
31 |
+
.submit {
|
32 |
+
color: black !important;
|
33 |
+
}
|
34 |
+
.selected {
|
35 |
+
background-color: #656bd6 !important;
|
36 |
+
}
|
37 |
+
.radio_item {
|
38 |
+
border-radius: 10px;
|
39 |
+
padding-left: 10px !important;
|
40 |
+
padding-right: 10px !important;
|
41 |
+
}
|
42 |
+
.radio_item:hover {
|
43 |
+
color: #656bd6 !important;
|
44 |
+
}
|
45 |
+
.title {
|
46 |
+
background-image: url(https://media.giphy.com/media/26BROrSHlmyzzHf3i/giphy.gif);
|
47 |
+
background-size: cover;
|
48 |
+
color: transparent;
|
49 |
+
-moz-background-clip: text;
|
50 |
+
-webkit-background-clip: text;
|
51 |
+
text-transform: uppercase;
|
52 |
+
font-size: 60px;
|
53 |
+
line-height: .75;
|
54 |
+
margin: 10px 0;
|
55 |
+
}
|
56 |
+
.panel_header {
|
57 |
+
color: black !important;
|
58 |
+
}
|
59 |
+
input {
|
60 |
+
background-color: #efeffa !important;
|
61 |
+
}
|
62 |
+
.acc, .feat {
|
63 |
+
background-color: #FF3399 !important
|
64 |
+
}
|
65 |
+
.prj {
|
66 |
+
background-color: #FFCE3B !important;
|
67 |
+
}
|
68 |
+
.data {
|
69 |
+
background-color: #ED6800 !important;
|
70 |
+
}
|
71 |
+
.ethics {
|
72 |
+
background-color: #3EE6F9 !important;
|
73 |
+
}
|
74 |
+
.team {
|
75 |
+
background-color: #9581EF !important;
|
76 |
+
}
|
77 |
+
.model-container {
|
78 |
+
display: flex;
|
79 |
+
flex-direction: column;
|
80 |
+
justify-content: center;
|
81 |
+
}
|
82 |
+
.spacer {
|
83 |
+
display: flex;
|
84 |
+
justify-content: center;
|
85 |
+
}
|
86 |
+
.model-div {
|
87 |
+
width: 45%;
|
88 |
+
}
|
89 |
+
@media screen and (max-width: 700px) {
|
90 |
+
.model-container {
|
91 |
+
flex-wrap: wrap;
|
92 |
+
}
|
93 |
+
}
|