-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (93 loc) · 1.56 KB
/
style.css
File metadata and controls
95 lines (93 loc) · 1.56 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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: sans-serif;
}
body{
width: 100%;
height: 100%;
background-color: #212125;
color: #ffffff;
}
h3{
font-size: 2vw;
color: #e3C6D6;
}
form {
width: 20%;
padding: 20px;
display: flex;
flex-direction: column;
justify-content: center;
gap: 10px;
}
form input,button{
padding: 12px;
border-radius: 10px;
background-color: rgb(182, 179, 179);
border: none;
}
#error{
color: red;
}
form button{
width:50%;
margin-left: 23%;
background-color: white;
transition: all 0.3s ease-in-out;
cursor: pointer;
font-size: 15px;
font-weight: 700;
}
form button:hover{
background-color: greenyellow;
transform: scale(1.2);
}
.container {
display: flex;
flex-direction: column;
width: 40%;
min-height: 400px;
margin-left: 35%;
background-color: rgb(222, 216, 216);
border-radius: 20px;
}
.upper-content{
width: 100%;
height: 50%;
padding: 30px;
display: flex;
gap: 3vw;
}
.img{
width: 150px;
height: 150px;
border: 2px solid black;
border-radius: 50%;
}
.img img{
width: 100%;
height: 100%;
border-radius: 50%;
}
.information h1{
font-size: 2.6vw;
color: rgba(253, 129, 6, 0.9);
margin-bottom: 10px;
margin-left: 10px;
}
.information .followers{
display: flex;
justify-content: space-evenly;
gap: 10px;
}
.inf {
display: flex;
}
.lower-content{
padding: 30px;
color: #504e4f;
font-weight: 700;
font-size: 19px;
}