mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-12 01:34:19 +02:00
@@ -2,6 +2,7 @@
|
|||||||
language: css
|
language: css
|
||||||
contributors:
|
contributors:
|
||||||
- ["Mohammad Valipour", "https://github.com/mvalipour"]
|
- ["Mohammad Valipour", "https://github.com/mvalipour"]
|
||||||
|
- ["Marco Scannadinari", "https://github.com/marcoms"]
|
||||||
filename: learncss.css
|
filename: learncss.css
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -129,11 +130,11 @@ selector {
|
|||||||
width: 5in; /* in inches */
|
width: 5in; /* in inches */
|
||||||
|
|
||||||
/* Colors */
|
/* Colors */
|
||||||
background-color: #F6E /* in short hex */
|
background-color: #F6E; /* in short hex */
|
||||||
background-color: #F262E2 /* in long hex format */
|
background-color: #F262E2; /* in long hex format */
|
||||||
background-color: tomato /* can be a named color */
|
background-color: tomato; /* can be a named color */
|
||||||
background-color: rgb(255, 255, 255) /* in rgb */
|
background-color: rgb(255, 255, 255); /* in rgb */
|
||||||
background-color: rgb(10%, 20%, 50%) /* in rgb percent */
|
background-color: rgb(10%, 20%, 50%); /* in rgb percent */
|
||||||
background-color: rgba(255, 0, 0, 0.3); /* in semi-transparent rgb */
|
background-color: rgba(255, 0, 0, 0.3); /* in semi-transparent rgb */
|
||||||
|
|
||||||
/* Images */
|
/* Images */
|
||||||
|
Reference in New Issue
Block a user