Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/vjeantet/hugo-theme-docport.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorvjeantet <valere.jeantet@gmail.com>2020-07-26 13:30:11 +0300
committervjeantet <valere.jeantet@gmail.com>2020-07-26 13:30:11 +0300
commitc035fd9e8f3cd5647e40b4acfec2a561257dd252 (patch)
tree9ab22aaafb32d1c2240c4767f5b3508e1027578e /assets
parented37ab813f0a6078ae7689704c4e6df004ea3f13 (diff)
fix children css
Diffstat (limited to 'assets')
-rw-r--r--assets/sass/shortcodes/children.scss36
1 files changed, 36 insertions, 0 deletions
diff --git a/assets/sass/shortcodes/children.scss b/assets/sass/shortcodes/children.scss
new file mode 100644
index 0000000..9a4eb86
--- /dev/null
+++ b/assets/sass/shortcodes/children.scss
@@ -0,0 +1,36 @@
+article {
+ul.children.children-card {
+ flex-wrap: wrap;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+
+ >span {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ min-width: 0;
+ min-height: 0;
+ width: 40%;
+ min-width: 250px;
+ margin: 1rem 1rem ;
+ border: 0.1rem solid #ccc;
+
+box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
+ card{
+ margin: 0px 0px;
+ display: block;
+ padding: 1rem;
+ background-color: #eee;
+ font-size: 200%;
+ }
+
+ p{
+ padding: 0rem 1rem;
+ }
+ }
+}
+}