-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
92 lines (92 loc) · 1.85 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
body, html {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
}
nav{
height: 70px;
background-color: rgba(255,255,255,0.8);
position: sticky;
top: 0;
z-index: 999;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-bottom: 1px solid rgb(200,200,200);
display: flex;
align-items: center;
padding: 8px 16px;
box-sizing: border-box;
}
nav a img{
height: 40px;
}
nav input[type='search']{
margin-left: auto;
padding: 8px 16px;
background-color: rgb(240,240,245);
border: none;
border-radius: 16px;
font-size: 1.2rem;
}
#container{
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 8px;
}
#container article{
max-width: 800px;
padding: 24px 8px;
overflow-x: hidden;
}
#container article p{
overflow: auto;
}
#container article .title span{
width: 100%;
font-size: 3rem !important;
font-weight: 600;
display: inline-block;
margin-bottom: 0.5em;
padding-bottom: 0.5em;
border-bottom: 0.5px solid rgb(160,160,160);
}
#container article .subtitle span{
font-size: 1.4rem !important;
font-weight: 600;
}
#container section.social{
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
padding-top: 24px;
margin-top: 24px;
background-color: snow;
}
.card{
max-width: 300px;
width: 100%;
margin: 8px;
padding: 16px;
border: 1px solid rgb(200,200,200);
border-radius: 4px;
display: flex;
flex-direction: column;
justify-content: start;
text-decoration: none;
}
.card .card_category{
font-weight: 600;
font-size: 1rem;
color: rgb(100,100,100);
}
.card .card_title{
margin: 0;
font-size: 2rem;
color: black;
}
.card .card_author{
margin-top: auto;
color: rgb(160,160,160);
}