-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathBlog.css
More file actions
100 lines (88 loc) · 1.86 KB
/
Blog.css
File metadata and controls
100 lines (88 loc) · 1.86 KB
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
.cards {
display: flex;
margin-top: 10%;
}
@media (max-width: 35em) {
.cards{
display: flex;
flex-direction: column;
flex: 100%;
margin: 5%;
padding: auto;
}
.card-elements{
margin: 10%;
}
}
.card-elements {
position: relative;
margin-right: 80px;
}
.box {
height: 300px;
width: 300px;
/* position: absolute; */
z-index: 1;
}
.card {
height: 300px;
width: 300px;
position: absolute;
z-index: 2;
top: 0px;
left: 0px;
}
.card:hover{
top:50px;
left:0px;
}
.medium-widget-article__item {
padding: 3px !important;
box-sizing: border-box !important;
margin: 10px !important;
background: #232323 !important;
-webkit-transition: all 0.3s ease 0s !important;
-moz-transition: all 0.3s ease 0s !important;
-o-transition: all 0.3s ease 0s !important;
transition: all 0.3s ease 0s !important;
}
.medium-widget-article__item:hover {
background-color: #666666 !important;
}
.medium-widget-article__title {
font-size: 22px !important;
font-weight: 500 !important;
color: white !important;
padding: 5px !important;
}
.medium-widget-article__title:hover {
color: #6f389f !important;
}
.medium-widget-article__description {
color: whitesmoke !important;
text-align: justify !important;
padding: 7px !important;
padding-top: 0 !important;
}
.medium-widget-article__author-name {
color: whitesmoke !important;
text-transform: uppercase !important;
font-weight: 200 !important;
font-size: 12px !important;
}
.medium-widget-article__date {
color: rgb(138, 138, 138) !important;
}
@media (max-width: 991px) {
.medium-widget-article__row:last-child {
margin-bottom: 40px;
}
}
.btnPublication {
border-radius: 50px !important;
border: 1px solid #fafafa !important;
color: #fafafa !important;
padding: 10px 30px !important;
margin: 10px auto !important;
font-weight: 400 !important;
}