-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
118 lines (118 loc) · 1.81 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
:root
{
--bg: #222;
--bg-1: #181818;
--bg-2: #111;
--bg-3: #050505;
--clr: white;
}
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body.bg-black
{
background-color: var(--bg);
color: var(--clr);
}
body
{
height: 90vh;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: hidden;
}
a
{
color: var(--clr);
text-decoration: none;
}
a:hover
{
text-decoration: underline;
}
img
{
transition: 0.2s;
user-select: none;
border-radius: 50%;
box-shadow: 0 0 15px 2px black;
margin: 10px 0;
width: 250px;
}
img:hover
{
scale: 1.05;
}
img:active
{
scale: 0.9;
}
.form
{
margin-bottom: 40px;
display: flex;
align-items: center;
gap: 10px;
}
.inputBx
{
display: flex;
align-items: center;
height: 40px;
}
.inputBx i.box
{
display: flex;
align-items: center;
justify-content: center;
}
.inputBx .box
{
font-size: 16px;
border: none;
outline: none;
padding: 7px;
background-color: var(--bg-1);
color: var(--clr);
height: 100%;
transition: 0.3s;
}
.inputBx .box:first-child
{
border-radius: 15px 0 0 15px;
padding-left: 12px;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
}
.inputBx .box:last-child
{
border-radius: 0 15px 15px 0;
padding-right: 12px;
background-color: var(--bg-2);
}
.inputBx .box:last-child:hover
{
background-color: var(--bg-3);
cursor: pointer;
}
.profileBox
{
background-color: rgba(0,0,0,0.8);
box-shadow: 0 0 15px 2px black;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-width: 400px;
padding: 20px;
border-radius: 20px;
gap: 30px;
}