-
Notifications
You must be signed in to change notification settings - Fork 0
/
prcatice_04.css
71 lines (68 loc) · 1.54 KB
/
prcatice_04.css
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
/* div {
background-color: aqua; */
/* display: inline; */
/* whitout inline div get extra space */
/* } */
/* button { */
/* display: block; */
/* whitout display block it get that much space that requre for storing the value */
/* } */
/* .box {
height: 100px;
background-color: blue;
color: yellow;
width: 100px;
margin: 25px;
padding: 25px;
} */
/* div {
display: inline-block;
} */
.box2 {
/* display: none; */
/* by using display none removed a box */
visibility: hidden;
/* When visiblity is set to none, space fot the elemnt is reserved But for display set none, no spcae is reserved or blocked for the element. */
}
/* alpha channel */
.box4 {
background-color: rgba(139, 41, 41, 0.286);
padding: 25px;
}
.content_1 {
height: 100px;
width: 100px;
background-color: rgb(115, 140, 161);
margin: 10px;
display: inline-block;
border:2px solid #2d3333;
}
.nav_01{
background-color: #2d3333;
text-align: center;
padding: 10px;
}
.nav_02 {
text-decoration: none;
color: white;
font-size: 25px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
margin: 30px;
padding-top: 20px;
padding-bottom: 20px;
text-align: center;
font-weight: 200;
color: rgb(198, 198, 217);
}
.home{
color: rgb(191, 56, 56);
}
.submit {
background-color: #f08804;
color: white;
border: #f08804;
padding: 5px;
}
#search {
padding: 5px;
}