-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoolHome.css
More file actions
80 lines (78 loc) · 1.43 KB
/
coolHome.css
File metadata and controls
80 lines (78 loc) · 1.43 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
body {
background-color: #e8ebec;
}
p {
font-family: Impact, fantasy;
font-size:40px;
color: #F0F0F0;
text-align:center;
display:block;
background-color: #696969;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
box-shadow: 3px 3px 10px black;
margin-left: 10px;
margin-right: 10px;
}
#wrapper {
border: 1px solid gray;
width: 800px;
height: 800px;
margin-left: auto;
margin-right: auto;
background-color: #f4f5f5;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
box-shadow: 3px 3px 5px black;
}
div.img
{
margin:2px;
border:1px solid black;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
box-shadow: 3px 3px 5px black;
background-color: #b8b8b8;
height:auto;
width:auto;
float:left;
text-align:center;
width: 15.9%;
overflow:hidden;
}
div.img img
{
display:inline;
margin: 0 0 0 -120px ;
border:1px solid #ffffff;
}
/*div.img img:hover
{
border:3px solid #ffffff;
opacity:0.4;
filter:alpha(opacity=40);
width:200px;
}*/
div.img:hover
{
border:3px solid #ffffff;
opacity:0.4;
filter:alpha(opacity=40);
width:200px;
}
div.desc
{
display:block;
font-family: Impact, Charcoal, sans-serif;
font-weight:normal;
font-size: 25px;
width:auto;
text-align:center;
margin:2px 2px 2px -80px;
height:200px;
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
}