File size: 2,173 Bytes
e7ef6c8 |
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 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
.tm-timeline {
position: relative;
}
.container {
margin-top: 40px;
}
.tmtimelineitem {
border-left: 2px solid #2c26d9;
margin-top: -5px;
padding-left: 40px;
padding-bottom: 40px;
position: relative;
}
.tmtimelineitem h2 {
margin-top: 0;
line-height: 0.5;
}
.tmtimelineitem p {
margin-bottom: 0;
}
.tmtimelineitem:before {
content: ' ';
width: 14px;
height: 14px;
position: absolute;
left: -8px;
background-color: #2063df;
border-radius: 50%;
}
.tmtimelineitem:first-child:before {
left: -8px;
}
.tmtimelineitem:last-child:before {
left: -6px;
}
.tmtimelineitem:last-of-type {
padding-bottom: 0;
border: 0;
}
.tmtimelineentry {
padding-top: 15px;
}
.tmtimelineentry + .tmtimelineentry {
margin-top: 15px;
}
.tmtimelineentry .tmtimelineentrylabel {
font-size: 16px;
color: #1a1a1a;
}
@media (min-width: 768px) {
.tmtimelineentry .tmtimelineentrylabel {
width: 100px;
float: left;
clear: both;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.tmtimelineentry .tmtimelineentrydata {
margin-left: 100px;
}
}
@media (max-width: 767px) {
.uk-block {
padding-top: 50px;
padding-bottom: 50px;
}
}
.tm-block-content {
min-height: calc(100vh - 142px);
}
.uk-block-muted {
background: #f8f9fa;
}
.uk-block-primary {
background: #e43d3c;
}
.uk-block-secondary {
background: #1a1a1a;
}
.ukbadge {
font-weight: 400;
padding: 4px;
box-shadow: #1a1a1a;
}
/* ADDED */
.ukbadgesuccess {
background-color: #3dc372;
color: #fff;
border-radius: 8px;
padding: 4px;
text-shadow: #2063df;
}
/* CHANGED */
.ukbadgewarning {
background-color: #ffb24e;
color: #fff;
}
/* FIXED or REMOVED */
.ukbadgedanger {
background-color: #e44e56;
border-radius: 8px;
text-shadow: #ffb24e;
padding: 4px;
color: #fff;
}
.iconset {
padding-top: 20px;
display: flex;
flex-direction: row;
gap: 50px;
}
.bicon {
display: flex;
gap: 8px;
flex-direction: row;
}
.avatar {
border-radius: 5px;
box-shadow: #1a1a1a;
padding: 2px;
}
.readmore {
font-weight: 400;
text-shadow: #1a1a1a;
color: #2657b2;
-webkit-text-fill-color: #2c26d9;
}
|