-
Notifications
You must be signed in to change notification settings - Fork 0
/
img.style.css
133 lines (103 loc) · 1.99 KB
/
img.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
127
128
129
130
131
132
133
body{
background-color: black;
}
img{
width: 300px;
border-radius: 8px;
object-fit: contain;
display: block;
transition: 0.2s;
}
img:hover{
opacity: 0.7;
}
input{
display: block;
align-self: center;
font-weight: 200;
margin-top: 5px;
margin-bottom: 5px;
width: 300px;
font-size: 20px;
border-radius: 28px;
margin-left: 280px;
margin-right: 250px;
}
.top{
display: flex;
}
.pm{
font-weight: bold;
color: white;
display: inline-block;
width: 200px;
font-family: 'Arial', Arial, sans-serif;
margin-top: 8px;
margin-bottom: 0;
}
.pmm{
display: inline-block;
width: 200px;
margin-top: 8px;
margin-bottom: 0;
color: rgb(181, 172, 172);
font-family: 'Arial', Arial, sans-serif;
}
div{
width: 300px;
display: inline-block;
vertical-align: top;
margin-top: 10px;
margin-right: 10px;
margin-left: 10px;
}
.info{
width: 250px;
display: inline-block;
margin-top: 10px;
margin-right: 10px;
vertical-align: top;
}
.circle{
display: block;
width: 50px;
border-radius: 50px;
cursor: pointer;
transition: 0.2s;
}
.circle:hover{
opacity: 0.8;
}
.cout{
display: flex;
}
.lin3{
color: aliceblue;
display: block;
font-size: 40px;
width: 200px;
margin-top: 5px;
margin-bottom: 5px;
margin-left: 10px;
}
.logo{
color: aliceblue;
background-color: red;
padding-left: 12px;
padding-right: 12px;
padding-top: 5px;
padding-bottom: 0px;
border-radius: 8px;
margin-left: 30px;
}
.you{
color: rgb(180, 186, 186);
size: 10px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
margin-left: 5px;
width: 50px;
}
/* properties of img tag
object-fit : cover(crop acc to given both height and width)/contain(stretch acc. to height and width maintaining the image's actual )
object-position
*/