-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (39 loc) · 760 Bytes
/
style.css
File metadata and controls
40 lines (39 loc) · 760 Bytes
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
/*
CSS Default Browser Values
*/
body{
background-color: #9fd8df;
}
/*Tag Selectors*/
hr{
background-color: white;
border-style: none;/*height*/
border-top-style: dotted;
border-color: grey;
border-width: 5px;
width: 10%;
}
h1{
color: rgb(141, 9, 9);
font-size: 50px;
}
h3{
color: rgb(124, 16, 16);
}
img:hover{
background-color: gold;
}/*Pseudo Class*/
/*Class Selectors*/
.Rishi
{
background-color: lawngreen;
}
.Divs
{
background-color: red;
}
.Cute{
border-radius: 100%;
}
/*Id > Class > Tag Selector{Priority}*/
/*Class => Can be used in multiple places + Mutiple classes can be present together - ID => Can be used just once + Just 1 ID*/