forked from devsonket/devsonket.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.json
More file actions
116 lines (116 loc) · 5.24 KB
/
Copy pathcss.json
File metadata and controls
116 lines (116 loc) · 5.24 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
112
113
114
115
116
{
"id": "css",
"title": "সিএসএস",
"slug": "css",
"description": " সিএসএস এর মাধ্যমে ওয়েব পেইজের লেআউট ডিজাইন ও ওয়েব ব্রাউজারে ডকুমেন্ট কিভাবে প্রদর্শন হবে তা নির্ধারন করা হয়।",
"colorPref": "#264DE4",
"contents": [
{
"title": "ব্যাসিক ধারণা",
"items": [
{
"definition": "সিনট্যাক্স সিলেক্টর",
"code": "selector{ property: value;}"
},
{
"definition": "External CSS ফাইল যুক্ত করুতে",
"code": "<link rel='stylesheet' href='style.css'>"
},
{
"definition": "Internal CSS ফাইল যুক্ত করুতে",
"code": "<style> body {background: blue;}</style>"
},
{
"definition": "Inline CSS লিখতে",
"code": "<h1 style='color:blue;'>A Blue Heading</h1>"
},
{
"definition": "সকল ইলিমেন্ট সিলেক্ট করতে",
"code": "* {property: value;}"
},
{
"definition": "সকল আইডি সিলেক্ট করতে",
"code": "#id {property: value;}"
},
{
"definition": "সকল ক্লাস সিলেক্ট করতে",
"code": ".class {property: value;}"
}
]
},
{
"title": "ব্যাকগ্রাউন্ড",
"items": [
{
"definition": "ব্যাকগ্রাউন্ড প্রপার্টিস",
"code": "background | background-color | background-image | background-position | background-size | background-attachment | background-repeat | background-clip | background-origin"
},
{
"definition": "ব্যাকগ্রাউন্ড কালার ভ্যালু",
"code": "Color Code - #fffff, #000000 | transparent | Color Name - White, Red, etc"
},
{
"definition": "ব্যাকগ্রাউন্ড ইমেজ ভ্যালু",
"code": "url | gradient | none"
},
{
"definition": "ব্যাকগ্রাউন্ড পজিশন",
"code": "top | left | center | bottom | right | top center | top left | top right | bottom left | bottom right | bottom center | center left | center center | center right"
},
{
"definition": "ব্যাকগ্রাউন্ড সাইজ",
"code": "auto | length | percentage | cover | contain | initial | inherit"
},
{
"definition": "ব্যাকগ্রাউন্ড এটাচমেন্ট",
"code": "scroll | fixed | local | initial | inherit "
},
{
"definition": "ব্যাকগ্রাউন্ড রিপিট ভ্যালু",
"code": "repeat | repeat-x | repeat-y | no-repeat | space | round | initial | inherit"
},
{
"definition": "ব্যাকগ্রাউন্ড ক্লিপ ভ্যালু - ব্যবহার কালার ও ইমেজ",
"code": "border-box |padding-box | content-box | initial | inherit"
},
{
"definition": "ব্যাকগ্রাউন্ড অরিজিন ভ্যালু - ব্যবহার ব্যাকগ্রাউন্ড ইমেজ",
"code": "padding-box | border-box | content-box | initial | inherit "
}
]
},
{
"title": "টাইপোগ্রাফি",
"items": [
{
"definition": "ফন্ট প্রপার্টি",
"code": "font-style | font-variant | font-weight | font-size | line-height | font-family"
},
{
"definition": "ফন্ট স্টাইল ভ্যালু",
"code": "normal | italic | oblique | initial | inherit"
},
{
"definition": "ফন্ট ভ্যারিয়ান্ট ভ্যালু",
"code": "normal | small-caps | initial | inherit"
},
{
"definition": "ফন্ট ওয়েট ভ্যালু",
"code": "normal | bold | bolder | lighter | number | initial | inherit"
},
{
"definition": "ফন্ট সাইজ ভ্যালু",
"code": "medium | xx-small | x-small | small | large | x-large | xx-large | smaller | larger | length | initial | inherit"
},
{
"definition": "লাইন হাইট ভ্যালু",
"code": "normal | number | length | initial | inherit"
},
{
"definition": "ফন্ট ফ্যামিলি",
"code": "font-family: Arial, Helvetica, sans-serif;"
}
]
}
]
}