-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrevision
More file actions
111 lines (99 loc) · 2.37 KB
/
revision
File metadata and controls
111 lines (99 loc) · 2.37 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/* background
/* div {
background-color: red; /* Color Name
background-color: rgb(0 0 0 / 50%); /* Red, Green, Blue, Alpha Channel
background-color: #FF0000; Color Hex Code
background-image: url("../imgs/learn-programming.png");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: left top;
background-size: auto;
} */
/* ------------------------------------------------------ */
/* padding , margin */
/* ------------------------------------------------------ */
/* border */
/* div {
border-width: 10px;
border-color: red;
border-style: solid;
border: 10px solid red;
} */
/* ---------------------------------------------------------- */
/* display */
/* Block *
- Take Full Width If No Width
- Add Line Break
- Respect Padding, Margin, Width, Height
Inline
- Do Not Repsepct Width, Height
- Respect Padding And Margin [ Just Wight + Left ]
- Do Not Add Line Break
- Allow Elements Before And After It in The Same Line
Inline-Block
- Allow Elements Before And After It in The Same Line
- Respect Padding, Margin, Width, Height
*/
/* .first {
visibility: hidden;
} */
/* -------------------------------------------------------- */
/* grouping */
/* nesting */
/* div .special {
color: red;
} */
/* --------------------------------------------------------------- */
/* overflow */
/* div {
background-color: #f9f9f9;
text-align: center;
direction: ltr;
}
img {
vertical-align:bottom;
} */
/* ------------------------------------------------- */
/* text direction , transform */
/* div {
background-color: #f9f9f9;
word-spacing: 10px;
} */
/* ----------------------------------------------------- */
/* cursor: pointer; */
/* --------------------------------------------------------------- */
/* table styling */
/* body {
font-family: Arial, Helvetica, sans-serif;
}
table {
width: 100%;
border: 1px solid #CCC;
border-spacing: 0;
}
table td {
padding: 15px;
background-color: #EEE;
border: 1px solid #CCC;
}
table thead td {
background-color: #f44336;
color: #FFF;
font-weight: bold;
text-align: center;
border-color: #F35246;
}*/
/* div {
} */
/* table {
background-color: #eee;
width: 100%;
}
table td {
padding: 15px;
border: 1px solid red;
border-radius: 4px;
}
table thead td {
text-align: center;
}*/