-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
146 lines (136 loc) · 2.48 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
.gradient-background {
background: linear-gradient(300deg, #00bfff, #5bf623, #0387f2);
background-size: 180% 180%;
animation: gradient-animation 18s ease infinite;
}
.gradient-background2 {
background: linear-gradient(300deg, #0091ff, #f7f7f6, #03b6f2);
background-size: 180% 180%;
animation: gradient-animation 5s ease infinite;
}
@keyframes gradient-animation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.navbar {
background-color: #333;
overflow: hidden;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
}
.navbar a {
color: white;
text-decoration: none;
padding: 14px 20px;
display: block;
}
.navbar a:hover {
background-color: #ddd;
color: black;
}
@media screen and (max-width: 760px) {
.navbar {
display: none;
}
}
.btn{
font-size: small;
}
.box{
box-shadow: 5px 10px 10px rgb(187, 185, 185);
margin: 2px;
border: 1px solid white;
border-radius: 5px;
height: 300px;
}
.clear{
color: white;
border-color: white;
}
.white{
color: black;
background-color: white;
border-color: white;
}
.icon-square {
width: 3rem;
height: 3rem;
border-radius: 0.75rem;
}
.profile-img {
height: 100px;
border-radius: 50%;
}
.icon-1{
align-self: center;
background-color: #0387f2;
border: 1px solid #0387f2;
border-radius: 35px;
height: 70px;
width: 70px;
}
.icon-2{
align-self: center;
background-color: #f7145c;
border: 1px solid #f7145c;
border-radius: 35px;
height: 70px;
width: 70px;
}
.icon-3{
align-self: center;
background-color: #f2ba03;
border: 1px solid #f2ba03;
border-radius: 35px;
height: 70px;
width: 70px;
}
.fil{
height: max-content;
width: 200px;
border: 1px solid rgb(255, 255, 255);
margin: 10px 10px 10px 10px;
border-radius: 15px;
}
.fils{
height: 130px;
width: 200px;
}
.tags{
border-radius: 50px;
box-shadow: 5px 5px 5px rgb(187, 185, 185);
height: 80px;
width: 80px;
image-rendering:optimizeQuality;
margin: 5px 5px 5px 5px;
}
@media (max-width: 302px){
.box{
box-shadow: 5px 10px 10px rgb(187, 185, 185);
margin: 2px;
border: 1px solid white;
border-radius: 5px;
width: 100%;
height: 530px;
}
.fil{
height: max-content;
width: 180px;
border: 1px solid rgb(231, 229, 229);
margin: 10px 10px 10px 10px;
border-radius: 15px;
}
.fils{
height: 130px;
width: 180px;
}
}