-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (71 loc) · 1.33 KB
/
style.css
File metadata and controls
87 lines (71 loc) · 1.33 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
body {
max-width: 800px;
margin: 40px auto;
border: 40px auto;
font-family: 'Arial';
color: black;
background-image: url("/assets/background.png");
background-size: cover;
background-attachment: fixed;
background-color: white;
padding: 0px 20px;
h1 {
color: #1a73e8;
font-weight: bold;
font-size: 40px;
}
h2 {
color: #1a73e8;
font-weight: bold;
}
h3 {
color: #1a73e8;
}
.card {
background-color: white;
max-width: 800px;
width: 100%;
margin: 40px auto;
text-align: left;
border: 40px auto;
border-radius: 8px auto;
backdrop-filter: blur(20px);
line-height:40px auto;
padding: 10px;
}
.post-date {
color: #555;
font-size: 0.9rem;
padding: 0px;
}
.titulo-post{
margin-bottom: 20px;
font-size: 22px;
}
}
@media (max-width: 600px) {
.idk {
font-size: 14px;
margin: 10px auto;
padding: 0px;
background-color: white;
background-attachment: fixed;
}
h1 {
font-size: 24px;
}
h2 {
font-size: 18px;
}
.card {
width: 100%;
margin: 20px auto;
line-height:20px auto;
background-color: white;
}
img {
max-width: 100%;
height: auto;
}
}
}