-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (86 loc) · 1.45 KB
/
style.css
File metadata and controls
109 lines (86 loc) · 1.45 KB
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
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,body{
font-family: "Oswald", sans-serif;
}
h1{
font-size: 1.7em;
}
.container{
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 1.2em;
}
.search{
display: flex;
width: 50%;
}
.search input{
padding: 10px ;
width: 100%;
}
button{
padding: 3px 20px;
background-color: rgb(113, 107, 107);
color: white;
border: none;
font-size: medium;
}
.buttonclass:hover{
cursor: pointer;
background-color: rgb(65, 62, 65);
}
.button:active{
background-color: rgb(113, 107, 107);
}
/* prifle */
.profile{
margin-top: 40px;
padding: 20px;
box-shadow: 0 0 1em rgba(9, 7, 7, 0.4);
transition: 0.4s ease-out;
background-color: gray;
}
.profile:hover{
transform: rotate(-3deg) scale(1.01);
transition: 0.3s ease-in;
}
.top{
display: flex;
justify-content: space-between;
gap: 200px;
}
.left{
display: flex;
gap: 12px;
}
.avatar{
height: 70px;
width: 70px;
}
.avatar img{
height: 100%;
width: 100%;
border-radius: 50%;
}
.about{
margin: 23px 0px;
}
.about p{
color: white;
}
.status{
display: flex;
gap:80px;
justify-content: left;
}
.status-item p{
color: white;
}