-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathC5EX.css
More file actions
40 lines (39 loc) · 1.05 KB
/
C5EX.css
File metadata and controls
40 lines (39 loc) · 1.05 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
h1{
color: blueviolet;
font-size: 50px;
background-color: rgb(200, 255, 0);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-align: center;
}
/* Id name */
#a{
color: blue;
font-size: 50px;
background-color: rgb(200, 255, 0);
font-family:cursive;
}
/* h1#b{
color: fuchsia;
} */
#b{
background-color: darkred;
}
/* using class*/
.myclass{
color: darkgreen;
font-family: cursive;
font-size: 50px;
background-color: gold;
}
.myclass1{
background-color: crimson;
/* BOX MODEL */
padding: 50px;
margin: 20px;
border-radius: 20px;
border-width: 20px;
border-style: groove;
border-color: crimson;
text-align: center;
background-image: linear-gradient(120deg,pink,white ,red);
}