-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
94 lines (74 loc) · 1.76 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
@import url('https://fonts.googleapis.com/css?family=Ubuntu&display=swap');
:root{
--font-ubuntu: 'Ubuntu', monospace;
--color-border: #e5e5e5;
}
.font-ubuntu{
font: normal 500 16px var(--font-ubuntu);
}
#register, #login-form {
padding: 5% 0;
background: url("assets/3757c30a762387b.jpg") no-repeat;
background-size: cover;
}
#login-form{
padding: 10% 0;
}
#register .upload-profile-image{
position: relative;
width: 10%;
margin-left: auto;
margin-right: auto;
transition: filter .8s ease;
}
#register .upload-profile-image:hover{
filter: drop-shadow(1px 1px 22px #7584bb);
}
#upload-profile{
position: absolute;
top: 0;
z-index: 10;
width: 200px;
margin-top: 0px;
opacity: 0;
}
#upload-profile::-webkit-file-upload-button{
visibility: hidden;
}
#upload-profile::before{
content: ' ';
display: inline-block;
width: 200px;
height: 200px;
cursor: pointer;
border-radius: 50%;
}
#register .upload-profile-image .camera-icon{
position: absolute;
top: 70px;
width: 60px !important;
filter: invert(30%) !important;
}
#register .upload-profile-image:hover .camera-icon{
filter: invert(100%) !important;
}
#reg-form input[type='text'],
#reg-form input[type='email'],
#reg-form input[type='password'],
#log-form input[type='text'],
#log-form input[type='email'],
#log-form input[type='password']{
border: none;
border-radius: unset;
border-bottom: 1px solid var(--color-border);
font-family: var(--font-ubuntu);
}
#reg-form input[type='text'],
#reg-form input[type='email'],
#reg-form input[type='password'],
#log-form input[type='text'],
#log-form input[type='email'],
#log-form input[type='password']{
outline: none;
box-shadow: none;
}