-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
89 lines (71 loc) · 1.29 KB
/
styles.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
/******** general stylings *******/
*,
*:before,
*:after {
box-sizing: border-box;
}
:root {
--clr-blue-01: hsl(195, 59%, 59%);
--clr-blue-01-transp: hsla(195, 59%, 59%, 0.5);
--clr-green-01: hsl(90, 66%, 82%);
--clr-transp: hsla(0, 100%, 100%, 0);
}
html {
font-family: 'Ubuntu', sans-serif;
font-size: 16px;
margin: 0;
background-color: var(--clr-green-01);
height: 100%;
}
/******** specific stylings *******/
button {
border: none;
background-color: var(--clr-transp);
}
svg {
position: absolute;
top: -900%;
left: 50%;
transition: color .3s ease-in-out;
}
.max-width {
max-width: 400px;
position: relative;
}
.input-pw {
width: auto;
font-size: 1rem;
padding-block: .5rem;
padding-inline: .5rem;
}
#btnEyeShut:hover {
cursor: pointer;
color: var(--clr-blue-01-transp);
}
/******** utilities *******/
/**sizes**/
.s-2-5-rem {
height: 2.5rem;
}
/**colors & borders**/
.bdr-01rem-bl {
border: solid .1rem var(--clr-blue-01);
}
.bdr-r-0-25 {
border-radius: .25rem;
}
.clr-blue-01 {
color: var(--clr-blue-01);
}
/**felx**/
.flex {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
gap: .5rem;
}
/**attributes**/
.hidden {
display: none;
}