-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
54 lines (49 loc) · 905 Bytes
/
index.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
body{
/*background-image: url(bbg2.jpg);*/
background-color: white;
}
div.gallery {
margin: 5px;
border: 1px solid #ccc;
float: left;
width: 50%;
}
div.gallery:hover {
border: 1px solid #777;
}
div.gallery img {
width: 100%;
height: auto;
}
div.desc {
padding: 15px;
text-align: center;
color: white;
font-family:cursive;
}
.ghost {
background-color: black;
border: 2px solid white;
color: white;
padding: 20px 50px;
text-align: center;
font-family: cursive;
text-decoration: none;
display: inline-block;
font-size: 20px;
margin: 4px 2px;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
cursor: pointer;
}
input {
background-color: #eee;
border: none;
padding: 15px 25px;
margin: 8px 0;
width: 60%;
}
.ghost:hover {
background-color: white;
color: black;
}