-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
executable file
·126 lines (109 loc) · 2.04 KB
/
style.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
html{
background: url("http://cravedujour.com/wp-content/uploads/2015/05/Food-Background.jpg");
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body{
}
header {
background-color: rgba(255,255,255,0.6);
background-size: 40%;
border-width: 10px;
position: center;
text-align: center;
margin-left: 20%;
margin-right: 20%;
}
footer{
background-color: rgba(255,255,255,0.6);
border-width: 10px;
position: bottom;
text-align: right;
margin-left: 20%;
margin-right: 20%;
position: fixed;
bottom: 10px;
}
footer li{
display: inline-block;
}
main{
border-width: 10px;
/*position: center;*/
text-align: center;
}
.polaroid
{
background: white;
display: inline-block;
margin: 0 15px 30px;
padding: 10px 10px 60px;
text-align: center;
text-decoration: none;
-webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, .3);
-moz-box-shadow: 0 4px 6px rgba(0,0,0,.3);
box-shadow: 0 4px 6px rgba(0,0,0,.3);
-webkit-transition: all .15s linear;
-moz-transition: all .15s linear;
transition: all .15s linear;
z-index:0;
}
#currentImage{
width: inherit;
height: 500px;
/*max-height: 600px;
max-width: 600px;*/
background-size: cover;
background-position: 50% 50%;
}
#doneImage{
height: 300px;
width: 300px;
}
section .name{
text-align: center;
}
section .location{
text-align: center;
}
section .picture{
}
section .likeButton{
display: inline-block;
position: absolute;
margin-left: -12%;
margin-top: 36%;
bottom = 0px;
}
section .dislikeButton{
display: inline-block;
position: absolute;
margin-left: 9%;
margin-top: 36%;
bottom = 0px;
}
.buttonsize{
height: 30px;
width: 30px;
}
.imgbox {
background-color:white;
border-radius:25px;
height:200px;
position:relative;
width:300px;
}
.rotate-left {
transform: rotate(30deg) scale(0.8);
transition: 1s;
cursor: e-resize;
opacity: 0;
}
.rotate-right {
transform: rotate(-30deg) scale(0.8);
transition: 1s;
cursor: w-resize;
opacity: 0;
}