-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecent-news-boxes.css
86 lines (86 loc) · 1.77 KB
/
recent-news-boxes.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
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
.recentNews {
background-color: rgb(20, 117, 175)
}
.recentNews .news-title {
text-align:center;
padding-top:30px;
padding-bottom:30px;
font-family: 'nimbus-sans-condensed', sans-serif;
font-size:55px;
font-weight:bold;
color: #fff;
}
.recentNews .row {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 30px;
}
.recentNews .ct-blog {
margin-bottom: 30px;
}
.ct-blog .inner {
background-color: #FFF;
padding: 10px;
transition: all 0.2s ease-in-out 0s;
cursor: pointer;
height: 100%;
}
.ct-blog .inner:hover {
background-color: #e6e6e6;
}
.ct-blog .fauxcrop {
height: 180px;
overflow: hidden;
}
.ct-blog .fauxcrop img {
width: 100%;
}
.ct-blog-content {
display: table;
padding: 30px 0 28px;
}
.ct-blog-content .ct-blog-date {
border-right: 1px solid #95A5A6;
display: table-cell;
font-family: "Lato", sans-serif;
padding: 0px 18px 0px 15px;
text-align: center;
}
.ct-blog-content .ct-blog-date span {
font-size: 16px;
color: rgb(20, 117, 175);
font-weight: 700;
display: block;
line-height: 1;
}
.ct-blog-content .ct-blog-date strong {
font-size: 25px;
color: rgb(20, 117, 175);
}
.ct-blog-content .ct-blog-header {
color: #000;
display: table-cell;
font-size: 22px;
font-weight: 700;
letter-spacing: -0.2px;
line-height: 1.1;
padding: 0 20px;
vertical-align: top;
}
.btn-news {
color: #333;
font-size: 14px;
font-weight: bold;
padding-bottom: 30px;
text-align: center;
}
.btn-news.btn-contests a {
color: #fff;
font-family: 'nimbus-sans-condensed', sans-serif;
font-size: 24px;
transition: all 0.2s ease-in-out 0s;
}
.btn-news.btn-contests a:hover {
color: #000;
}