-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfacebook.css
182 lines (154 loc) · 3.28 KB
/
facebook.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
.profile_image_getting_from_fb{
width:25%;
}
.font_change{
font-size: 1em;
}
#img{
width: 10em;
height: 10em;
}
}
@media only screen and (min-device-width: 482px) and (max-device-width:767px){
.profile_image_getting_from_fb{
width:25%;
}
.font_change{
font-size: 1em;
}
#img{
width: 10em;
height: 10em;
}
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
.profile_image_getting_from_fb{
width:25%;
}
.font_change{
font-size: 1.3em;
}
#img{
width: 10em;
height: 10em;
}
}
@media only screen and (min-device-width : 1025px) and (max-device-width : 1223px) {
.profile_image_getting_from_fb{
max-width:40%;
}
.font_change{
font-size: 1em;
}
#img{
width: 12em;
height: 12em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width : 1224px) {
.profile_image_getting_from_fb{
max-width:100%
}
.font_change{
font-size: 1.3em;
}
#img{
width: 15em;
height: 15em;
}
.yes {
width: 65%;
transition-timing-function: linear;
margin-left:20%;
text-shadow: -5px 5px 5px rgba(0,0,0,0.3);
box-shadow: 10px 10px 5px grey;
transition: width 2s;
}
.yes:hover{
width:80%;
}
}
/* Large screens ----------- */
@media only screen and (min-width : 1824px) {
.profile_image_getting_from_fb{
max-width:100%
}
.font_change{
font-size: 1em;
}
#img{
width: 15em;
height: 15em;
}
.yes {
width: 45%;
transition-timing-function: linear;
margin-left:30%;
text-shadow: -5px 5px 5px rgba(0,0,0,0.3);
box-shadow: 10px 10px 5px white;
transition: width 2s;
}
.yes:hover{
width:55%;
}
}
table{
font-size: 1em;
}
.profile{
text-align: center;
}
.profile_image_getting_from_fb{
border: hidden;
border-radius: 50%;
padding-top: 10px;
padding-bottom: 10px;
}
.landing_page{
width:100%;
height:600px;
background-image:url("./img/landing_page.jpg");
background-size:100% 100%;
}
.button_detail{
text-align: center;
padding-top: 200px;
}
.individual_button{
padding: 15px 15px 15px 15px;
}
.image_detail{
border: hidden;
border-radius:50%;
width: 15em;
height: 15em;
text-align: center;
}
#test{
padding-top:10px;
padding-bottom: 10px;
}
.gif_styling{
text-align: center;
}
.yes {
background: red; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(left, red , yellow); /* For Safari 5.1 to 6.0 */
background: linear-gradient(to right, red , yellow); /* Standard syntax */
border:hidden;
position: relative;
border-radius: 10px 10px 10px 10px;
font-family:"Sansita";
color:darkblue;
padding: 10px 10px 10px 5px;
}
.link_display{
text-decoration:none!important;
}
.padding_style{
padding: 10px;
}