-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (81 loc) · 1.47 KB
/
Copy pathstyle.css
File metadata and controls
96 lines (81 loc) · 1.47 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
96
:root {
--grey: #C4C4C4;
--black: #222222;
--white: #fcfcfc;
}
*, html {
font-family: 'Roboto', sans-serif;
background: var(--white)
}
h1 {
font-size: 1.5rem;
font-weight: 800;
}
.strength-lines{
display: flex;
align-items: center;
justify-content: space-between;
width: 300px;
bottom: 2px;
left: 0;
right: 0 + size(calc(100% - 50px), 6px);
margin-top: 10px;
}
.line {
border: none;
height: 6px;
width: 95%;
border-radius: 2px;
transition: background-color 0.25s ease-in;
}
.bg-transparent {
background-color: transparent;
}
.bg-red {
background-color: red;
}
.bg-orange {
background-color: orange;
}
.bg-green {
background-color: green;
}
.btn {
background-color: var(--black);
color: var(--white);
border: none;
height: 40px;
width: 100px;
}
.btn:hover {
background-color: var(--white);
color: var(--black);
border: 2px solid var(--black);
height: 40px;
width: 100px;
}
.btn-secondary {
background-color: var(--white);
color: var(--black);
border: 2px solid var(--black);
height: 40px;
width: 100px;
}
.btn-secondary:hover {
background-color: var(--black);
color: var(--white);
height: 40px;
width: 100px;
}
input {
border: 1px solid var(--grey);
height: 36px;
width: auto;
}
input:focus {
border: 1px solid var(--black);
}
.notification:empty:before {
content: ' ';
white-space: pre;
}