-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
100 lines (84 loc) · 1.25 KB
/
style.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
* {
margin: 0;
padding: 0;
border: none;
box-sizing: border-box;
}
body {
font-family: arial, sans-serif;
}
img {
width: 100%;
}
.container {
width: 100%;
display: flex;
height: 100vh;
align-items: center;
background: #0d1a2d;
justify-content: center;
}
.container section {
padding: 18px;
margin: 0 auto;
max-width: 260px;
border-radius: 15px;
background: #15273f;
}
.container img {
border-radius: 8px;
}
.content {
padding: 5px 8px;
}
.text {
padding: 5px 0;
text-align: left;
}
.text h1 {
margin: 10px 0;
color: #fbffff;
font-weight: 100;
font-size: 1.1rem;
}
.text p {
font-size: .8rem;
color: #637997;
line-height: 1.2rem;
}
.info {
display: flex;
padding: 15px 0;
font-size: .8rem;
font-weight: 700;
justify-content: space-between;
border-bottom: 1px solid #2f4159;
}
.info .eth {
color: #3cd8de;
}
.info p {
color: #8eaed5;
}
.author {
display: flex;
padding: 15px 0 5px;
align-items: center;
justify-content: flex-start;
}
.author img {
width: 25px;
height: 25px;
border-radius: 50%;
background-size: cover;
border: 1px solid #fff;
}
.author p {
color: #a1adbe;
font-size: .7rem;
margin-left: 10px;
}
.author p cite {
color: #f0f7f9;
font-style: normal;
}