<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[CSS experiments for newbies]]></title><description><![CDATA[<p dir="auto">Here are some templates for all newbies.</p>
<p dir="auto"><strong>1.Black boxes</strong></p>
<p dir="auto"><img src="/assets/uploads/files/1592593226531-unbenannt.jpg" alt="Unbenannt.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto"><strong>CSS</strong></p>
<pre><code>html {
  cursor: default;
  overflow: hidden;
  background: #2c2c2d;
}


body {
  margin: 10px;
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  margin-bottom: -10px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #dbdcdf;
  background: transparent;
}

header {
  background: transparent;
  padding: 0.5rem;
  text-align: center;
  border-bottom: 0.7px solid rgba(0, 0, 0, 0.1);
  color: #dbdcdf;
  font-size: 20px;
}
.dimmed {
  color: #dbdcdf;
}

.normal {
  color: #dbdcdf;
}

.bright {
  color: #dbdcdf;
}

/**
 * module.color_border_shadow
 */ 
 .module.clock,
 .module.calendar,
 .module.newsfeed,
 .module.weatherforecast,
 .module.currentweather,
 .module.compliments {
  padding:8px;
  border-radius: 10px;
  box-shadow: 0 2em 6em #000;
  background: transparent;
}

.clock .time {
 font-size: 80px;
 text-align: center;
 margin-top: 25px;
 color: #dbdcdf;
 padding: 15px;
}
.clock .date {
  background: transparent;
  padding: 5px;
  text-align: center;
  border-bottom: 0.7px solid rgba(0, 0, 0, 0.1);
  color: #dbdcdf;
  font-size: 20px;
}


/**
 * module.width_height
 */
.module.calendar {
  width:450px;
  height: 320px;
}
.module.weatherforecast {
  width:400px;
  height: 220px;
}
.module.currentweather {
  height: 180px;
  width:400px;
  text-align: center;
}


</code></pre>
<p dir="auto"><strong>2.Material Design</strong></p>
<p dir="auto"><img src="/assets/uploads/files/1592593347854-unbenannt.png" alt="Unbenannt.png" class=" img-fluid img-markdown" /></p>
<p dir="auto"><strong>CSS</strong></p>
<pre><code>html {
  cursor: default;
  overflow: hidden;
  background: #e9e9e9;
}


body {
  margin: 10px;
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  margin-bottom: -10px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #666666;
  background: transparent;
}

header {
  background: transparent;
  padding: 0.5rem;
  text-align: center;
  font-size: 20px;
  color: #ed2553;
  border-bottom: 2px solid #e3e3e3;
}
.dimmed {
  color: #666666;
}

.normal {
  color: #666666;
}

.bright {
  color: #666666;
}

/**
 * module.color_border_shadow
 */ 
 .module.clock,
 .module.calendar,
 .module.newsfeed,
 .module.weatherforecast,
 .module.currentweather,
 .module.compliments {
  padding:8px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  background: #f2f2f2;
}

.clock .time {
 font-size: 80px;
 text-align: center;
 margin-top: 25px;
 color: #666666;
 padding: 15px;
}
.clock .date {
  background: transparent;
  padding: 5px;
  text-align: center;
  font-size: 20px;
  color: #ed2553;
  border-bottom: 2px solid #e3e3e3;
}


/**
 * module.width_height
 */
.module.calendar {
  width:450px;
  height: 320px;
}
.module.weatherforecast {
  width:400px;
  height: 220px;
}
.module.currentweather {
  height: 180px;
  width:400px;
  text-align: center;
}


</code></pre>
<p dir="auto"><strong>3.Neumorphism</strong></p>
<p dir="auto"><img src="/assets/uploads/files/1592593422920-unbenannt.jpg" alt="Unbenannt.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto"><strong>CSS</strong></p>
<pre><code>html {
  cursor: default;
  overflow: hidden;
  background: #545454;
}


body {
  margin: 10px;
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  margin-bottom: -10px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #FFFFFF;
  background: transparent;
}

header {
  background: transparent;
  padding: 10px;
  text-align: center;
  font-size: 20px;
  color: #FFFFFF;
  border-radius: 23px;
  box-shadow: inset 11px 11px 16px #3e3e3e, 
            inset -11px -11px 16px #6a6a6a;
}
.dimmed {
  color: #FFFFFF;
}

.normal {
  color: #FFFFFF;
}

.bright {
  color: #FFFFFF;
}

/**
 * module.color_border_shadow
 */ 
 .module.clock,
 .module.calendar,
 .module.newsfeed,
 .module.weatherforecast,
 .module.currentweather,
 .module.compliments {
  padding:8px;
  border-radius: 23px;
  background: #545454;
  box-shadow:  11px 11px 16px #3e3e3e, 
             -11px -11px 16px #6a6a6a;
}

.clock .time {
 font-size: 80px;
 text-align: center;
 margin-top: 25px;
 color: #FFFFFF;
 padding: 15px;
}
.clock .date {
  background: transparent;
  padding: 2px;
  text-align: center;
  font-size: 20px;
  color: #FFFFFF;
  border-radius: 23px;
  box-shadow: inset 11px 11px 16px #3e3e3e, 
            inset -11px -11px 16px #6a6a6a;
}


/**
 * module.width_height
 */
.module.calendar {
  width:450px;
  height: 320px;
}
.module.weatherforecast {
  width:400px;
  height: 220px;
}
.module.currentweather {
  height: 180px;
  width:400px;
  text-align: center;
}


</code></pre>
<p dir="auto"><strong>4.Trending</strong></p>
<p dir="auto"><img src="/assets/uploads/files/1592593496525-unbenannt.png" alt="Unbenannt.png" class=" img-fluid img-markdown" /></p>
<p dir="auto"><strong>CSS</strong></p>
<pre><code>html {
  cursor: default;
  overflow: hidden;
  background: #7e94d8;
}


body {
  margin: 10px;
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  margin-bottom: -10px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #666666;
  background: transparent;
}

header {
  background: #9DD5FF;
  padding: 8px;
  text-align: center;
  font-size: 20px;
  color: #FFFFFF;
  text-shadow: 0px 10px 20px #000000;
  box-shadow: 0px 16px 30px 0px rgba(0, 0, 0, 0.53);
  border-radius: 10px;
}
.dimmed {
  color: #FFFFFF;
}

.normal {
  color: #FFFFFF;
}

.bright {
  color: #FFFFFF;
}

/**
 * module.color_border_shadow
 */ 
 .module.clock,
 .module.calendar,
 .module.newsfeed,
 .module.weatherforecast,
 .module.currentweather,
 .module.compliments {
  padding:8px;
  border-radius: 10px;
  box-shadow: 0px 31px 35px 0px rgba(0, 0, 0, 0.38);
  background: linear-gradient(159deg, #47455d 0%, #323045 97%);
}

.clock .time {
 font-size: 80px;
 text-align: center;
 margin-top: 25px;
 color: #FFFFFF;
 padding: 15px;
}
.clock .date {
  background: #9DD5FF;
  padding: 2px;
  text-align: center;
  font-size: 20px;
  color: #FFFFFF;
  text-shadow: 0px 10px 20px #000000;
  box-shadow: 0px 16px 30px 0px rgba(0, 0, 0, 0.53);
  border-radius: 10px;
}


/**
 * module.width_height
 */
.module.calendar {
  width:450px;
  height: 320px;
}
.module.weatherforecast {
  width:400px;
  height: 220px;
}
.module.currentweather {
  height: 180px;
  width:400px;
  text-align: center;
}


</code></pre>
<p dir="auto"><strong>5.Tron</strong></p>
<p dir="auto"><img src="/assets/uploads/files/1592593561249-unbenannt.jpg" alt="Unbenannt.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto"><strong>CSS</strong></p>
<pre><code>html {
  cursor: default;
  overflow: hidden;
  background: #000;
}


body {
  margin: 10px;
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  margin-bottom: -10px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba( 0, 150, 254, 1 );
  background: transparent;
}

header {
  background: transparent;
  padding: 0.5rem;
  text-align: center;
  font-size: 20px;
  color: rgba( 0, 150, 254, 1 );
  text-shadow: 0 0 30px rgba( 0, 150, 254, .7 ), 0 0 50px rgba( 0, 150, 254, 1 );
  border-bottom: 0.7px solid rgba( 0, 150, 254, 1 );
}
.dimmed {
  color: rgba( 0, 150, 254, 1 );
}

.normal {
  color: rgba( 0, 150, 254, 1 );
}

.bright {
  color: rgba( 0, 150, 254, 1 );
}

/**
 * module.color_border_shadow
 */ 
 .module.clock,
 .module.calendar,
 .module.newsfeed,
 .module.weatherforecast,
 .module.currentweather,
 .module.compliments {
  padding:8px;
  border-radius: 10px;
  border-color: rgba( 0, 150, 254, 1 );
  box-shadow: 0 0 25px 2.5px rgba( 0, 150, 254, .4 );
  background: #000;
}

.clock .time {
 font-size: 80px;
 text-align: center;
 margin-top: 25px;
 color: rgba( 0, 150, 254, 1 );
 padding: 15px;
}
.clock .date {
  background: transparent;
  padding: 5px;
  text-align: center;
  border-bottom: 0.7px solid rgba( 0, 150, 254, 1 );
  color: rgba( 0, 150, 254, 1 );
  text-shadow: 0 0 30px rgba( 0, 150, 254, .7 ), 0 0 50px rgba( 0, 150, 254, 1 );
  font-size: 20px;
}


/**
 * module.width_height
 */
.module.calendar {
  width:450px;
  height: 320px;
}
.module.weatherforecast {
  width:400px;
  height: 220px;
}
.module.currentweather {
  height: 180px;
  width:400px;
  text-align: center;
}


</code></pre>
<p dir="auto">6.White Boxes</p>
<p dir="auto"><img src="/assets/uploads/files/1592593641622-unbenannt.jpg" alt="Unbenannt.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto"><strong>CSS</strong></p>
<pre><code>html {
  cursor: default;
  overflow: hidden;
  background: #c4c4c4;
}


body {
  margin: 10px;
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  margin-bottom: -10px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: black;
  background: transparent;
}

header {
  background: transparent;
  padding: 0.5rem;
  text-align: center;
  border-bottom: 0.7px solid rgba(0, 0, 0, 0.1);
  color: black;
  font-size: 20px;
}
.dimmed {
  color: black;
}

.normal {
  color: black;
}

.bright {
  color: black;
}

/**
 * module.color_border_shadow
 */ 
 .module.clock,
 .module.calendar,
 .module.newsfeed,
 .module.weatherforecast,
 .module.currentweather,
 .module.compliments {
  padding:8px;
  border-radius: 10px;
  box-shadow: 0 15px 20px -15px rgba(0, 0, 0, 0.3), 0 55px 50px -35px rgba(0, 0, 0, 0.3), 0 85px 60px -25px rgba(0, 0, 0, 0.1);
  background: white;
}

.clock .time {
 font-size: 80px;
 text-align: center;
 margin-top: 25px;
 color: black;
 padding: 15px;
}
.clock .date {
  background: transparent;
  padding: 5px;
  text-align: center;
  border-bottom: 0.7px solid rgba(0, 0, 0, 0.1);
  color: black;
  font-size: 20px;
}


/**
 * module.width_height
 */
.module.calendar {
  width:450px;
  height: 320px;
}
.module.weatherforecast {
  width:400px;
  height: 220px;
}
.module.currentweather {
  height: 180px;
  width:400px;
  text-align: center;
}


</code></pre>
]]></description><link>https://forum.magicmirror.builders/topic/13108/css-experiments-for-newbies</link><generator>RSS for Node</generator><lastBuildDate>Sat, 09 May 2026 23:49:56 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/13108.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 19 Jun 2020 19:09:04 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to CSS experiments for newbies on Mon, 29 Jun 2020 05:48:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/piranha1605" aria-label="Profile: Piranha1605">@<bdi>Piranha1605</bdi></a> :thumbs_up_medium-light_skin_tone: thanks nice work</p>
]]></description><link>https://forum.magicmirror.builders/post/77798</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/77798</guid><dc:creator><![CDATA[Stoffbeuteluwe]]></dc:creator><pubDate>Mon, 29 Jun 2020 05:48:45 GMT</pubDate></item><item><title><![CDATA[Reply to CSS experiments for newbies on Sun, 28 Jun 2020 21:37:18 GMT]]></title><description><![CDATA[<p dir="auto">All of this is now also available as modules.</p>
<p dir="auto"><a href="https://forum.magicmirror.builders/topic/13158/mmm-fast-css">https://forum.magicmirror.builders/topic/13158/mmm-fast-css</a></p>
]]></description><link>https://forum.magicmirror.builders/post/77782</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/77782</guid><dc:creator><![CDATA[Piranha1605]]></dc:creator><pubDate>Sun, 28 Jun 2020 21:37:18 GMT</pubDate></item></channel></rss>