-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
121 lines (109 loc) · 2.52 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,700");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.1/font/bootstrap-icons.css");
:root {
--entry-header-height: calc(100vh - 56px);
--entry-header-background: #e0e0e0;
--entry-footer-background: #e0e0e0;
--entry-footer-height: 25vh;
--site-footer-color: #999;
}
* {
outline: none;
}
html {
font-size: 16px;
}
body {
font-family: "Open Sans", sans-serif;
color: #444;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Montserrat", sans-serif;
font-weight: 600;
}
a {
text-decoration: none;
}
main {
min-height: 200vh;
}
.site-footer {
color: var(--site-footer-color);
font-size: 0.85rem;
}
.site-footer .card {
color: inherit;
background: transparent;
}
.site-footer .card .card-title {
font-size: 1rem;
text-transform: uppercase;
}
.site-footer .card .card-body ul {
margin-left: 0;
}
.hentry .entry-header {
background-color: var(--entry-header-background);
display: flex;
flex-flow: column no-wrap;
justify-content: center;
align-items: center;
min-height: var(--entry-header-height);
}
.hentry .entry-content {
min-height: 100vh;
}
.hentry .entry-footer .publish-on,
.hentry .entry-footer .writer {
font-size: 0.85rem;
}
.social-media span {
display: none;
}
.entry-header {
background-image: url("https://i.ibb.co/TtsbP0k/glass-1513692655.jpg");
background-position: center;
background-size: cover;
}
.starter-template {
color: #e0e0e0;
-webkit-backdrop-filter: blur(8px) saturate(180%);
backdrop-filter: blur(8px) saturate(180%);
background-color: rgba(0, 0, 0, 0.233);
border-radius: 1rem;
border: 3px solid rgba(102, 58, 0, 0.3);
box-shadow: -3px -3px 18px rgba(0, 77, 153, 0.3), 3px 3px 18px rgba(0, 26, 51, 0.7);
}
.modal-dialog {
background: transparent;
border-radius: 1rem;
}
.modal-dialog .modal-content {
/* From https://css.glass */
background: rgba(0, 0, 0, 0.473);
border-radius: 1rem;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(6px) saturate(180%);
-webkit-backdrop-filter: blur(6px) saturate(180%);
border: 1px solid rgba(0, 51, 102, 0.8);
}
.modal-dialog .modal-content .modal-header {
background: transparent;
border: none;
}
.modal-dialog .modal-content .modal-header .modal-title {
color: #fafafa;
}
.modal-dialog .modal-content .modal-body {
color: #fafafa;
}
.modal-dialog .modal-content .modal-footer {
background: transparent;
border: none;
}