-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (68 loc) · 1.55 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.row{
background-image: linear-gradient(180deg, rgba(192,153,116,255), rgba(209,164,127,255)) ;
border-radius: 30px;
box-shadow: 1px 1px 50px 2px rgba(192,153,116,255);
width: auto;
height: auto;
overflow: hidden;
}
img{
width: 85%;
height: auto;
}
.login h1{
font-size: calc(10vh * .8);
font-weight: 200;
color: rgb(21, 37, 37);
}
.inp{
width: 100%;
border: none;
padding: calc(2vh * 1);
border-radius: 60px;
box-shadow: 2px 4px 15px 4px rgba(0,0,0,0.25);
outline: 1;
outline-color: wheat;
outline-offset: 2.4px;
outline-style:solid;
}
.btn1{
width: auto;
height: auto;
border: none;
border-radius: 60px;
font-weight: 500;
padding: calc(2vh * 1) calc(8vh * 1);
text-align: center;
background-color: rgb(21, 37, 37);
color: rgba(192,153,116,255);
box-shadow: 2px 4px 15px 4px rgba(0,0,0,0.25);
outline-color: rgb(21, 37, 37);
outline-offset: 1.4px;
outline-style:solid;
transition: .3s ease-in-out;
}
.btn1:hover{
background-color: rgba(30, 55, 66, 0.404);
color: #000000;
font-weight: 500;
outline-color: rgba(30, 55, 66, 0.404);
outline-offset: 1.099px;
outline-style:solid;
transform: scale(1.075);
}
.container span img{
width: calc(3.5vh*2);
filter: contrast(70%);
border-radius: 100%;
}
.container span img:hover{
filter: contrast(120%);
transform: scale(1.1);
filter: opacity(1) drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}