-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (46 loc) · 1.72 KB
/
style.css
File metadata and controls
63 lines (46 loc) · 1.72 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
.head {
color: blue; /*change the fore color*/
text-align: center; /* align text at center*/
font-family: monospace; /* change font family*/
font-size: 40px; /*change the font size */
text-indent: 50px; /* move text */
letter-spacing: 10px; /* provide space between the text */
line-height: 2; /* provide the line light spacing */
word-spacing: 11px; /* provide the space between the letter */
font-weight: 900; /* font-weight-900 or bold */
}
.hello {
margin-top: 47px; /*top gap */
width: 420px; /*change the broad size */
text-align: center; /* aligin text at center wighin the border */
font-style: italic;
margin-left: 152px; /*provide gap at left */
}
.hello1 {
border: 2px solid tomato;
font-size: 45px;
padding: 22px; /* inner gap from all four side */
margin: 41px; /*outer gap from all side */
text-transform: capitalize;
}
.hello2 {
border: 2px solid dodgerblue;
font-size: 45px;
border-radius: 32px;
padding: 24px;
margin: 29px;
}
.hello3 {
border: 8px solid violet;
font-size: 45px;
border-radius: 26px;
padding: 29px;
margin: 46px;
}
body {
margin: 0; /*change the default margin to 0 */
margin: 0;
box-sizing: border-box; /* margin and padding are related with heigh and width */
background-color: beige; /*This is backgroun color */
opacity: 0.7; /* reduce the visibility or transparency to j0.7 */
}