forked from robinbeechey/recipe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
81 lines (60 loc) · 896 Bytes
/
stylesheet.css
File metadata and controls
81 lines (60 loc) · 896 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
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
img {
border:2px solid white;
border-radius: 100%;
height:300px;
width:300px;
box-shadow: 0px 15px 30px black;
-moz-transition:1s;
-webkit-transition: 1s;
}
img:hover{
height:375px;
width:375px;
border:none;
box-shadow: none;
-moz-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
cursor:pointer;
}
h1 {
color:#a2e076;
text-align: center;
margin-bottom:100px;
margin-top:50px;
font-size:5em;
}
html {
background-color:#ff703e;
font-family: Verdana;
}
.left {
position:relative;
float:left;
margin-left:200px;
}
.right {
position:relative;
float:right;
margin:60px 200px 0 0;
}
.one {
height:400px;
position:relative;
}
.why {
margin-right:245px;
}
.ingre {
margin-right:440px;
}
.direc {
margin-right:180px;
}
.underline {
text-decoration: line-through;
color:red;
}
li:hover {
background-color:white;
cursor: pointer
}