-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathresult.css
59 lines (53 loc) · 1013 Bytes
/
result.css
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
body {
font-family: 'PT Sans', sans-serif;
-webkit-font-smoothing: antialiased;
background-color: #F8F8F8;
box-sizing: border-box;
margin: 0;
}
.player-container {
background-color: white;
text-align: center;
margin: 5% 14% 0% 14%;
border-radius: 1%;
height: 100%;
padding-top: 3%;
padding-bottom: 3%;
}
.insight-title {
color: darkblue;
text-decoration: underline;
text-align: center;
font-size: 2em;
margin: 1%;
}
.insight-card {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
line-height: 30px;
margin-left: 10%;
margin-right: 10%;
padding-top: 4%;
}
.insight-risk {
margin-right: 10%
}
.insight-text {
font-size: 1.5em;
line-height: 40px;
}
.insight-button {
font-size: 1em;
border-radius: 4px;
border: none;
margin-top: 2%;
padding: 2% 2% 2% 2%;
text-decoration: none;
background: #D5D5D5;
transition: width 0.4s ease;
cursor: pointer;
outline: none;
/*font-family: 'Lateef', cursive;*/
}