-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
89 lines (72 loc) · 1.27 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
.gradient-background {
background: linear-gradient(300deg, #00bfff, #ff4c68, #ef8172);
background-size: 180% 180%;
animation: gradient-animation 18s ease infinite;
}
@keyframes gradient-animation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.icon-square {
width: 3rem;
height: 3rem;
border-radius: 0.75rem;
}
.profile-img {
height: 100px;
border-radius: 50%;
}
.dog{
height: 85px;
border-radius: 50%;
}
/* box-sizing: border-box; */
nav{
display: flex;
align-items: center;
justify-content: space-between;
text-decoration: none;
padding-top: 5px;
}
nav ul li{
list-style-type: none;
display: inline-block;
padding-left: 15px;
padding-right: 15px;
}
*{
margin: 0;
padding: 0;
}
.nav-item a{
text-decoration: none;
color: black;
font-size: 1.1rem;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 1.1rem;
align-items: center;
}
.nav-item a:hover{
color: grey;
text-decoration: underline;
}
.con{
color: azure;
}
.btn a{
list-style-type: none;
}
.feed{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-size: 3rem;
}