-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiv.css
More file actions
47 lines (43 loc) · 762 Bytes
/
div.css
File metadata and controls
47 lines (43 loc) · 762 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
41
42
43
44
45
46
47
.divone{
background-color: red;
width: 100px;
height: 100px;
}
.circle{
background-color: green;
width: 100px;
height: 100px;
border-radius: 50px;
}
.our{
border-color: black;
border-width:1px;
border-style: solid;
width: 300px;
padding-left: 15px;
padding-bottom: 20px;
}
.box{
cursor: pointer;
border-style: solid;
border-width: 1px;
border-color:black ;
width: 300px;
background-color: rgb(49, 49, 49);
}
.box:hover{
background-color: black;
}
.white{
color: white;
font-family: arial;
padding-left:8px ;
}
.white:hover{
color: brown;
}
.gray{
color: gray;
font-family: arial;
padding-left: 8px;
}