-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
78 lines (67 loc) · 1.33 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
@tailwind base;
@tailwind components;
@tailwind utilities;
* {
margin: 0;
padding: 0;
outline: none;
}
body {
background-color: #0652dd;
height: 100vh;
width: 100%;
font-family: "JetBrains Mono", monospace;
color: #174ad4;
}
svg {
border: 1px solid #9e9e9f;
margin-bottom: 1.5rem;
}
.container {
width: fit-content;
padding: 1rem;
background-color: rgba(255, 255, 255, 1);
border-radius: 20px;
display: flex;
flex-direction: column;
box-shadow: 5px 5px 0 5px #191919;
border: 1px solid #9e9e9f;
transition: box-shadow .2s ease-in-out;
&:hover {
box-shadow: 5px 5px 0 2px #191919;
}
&.success {
box-shadow:
5px 5px 0 2px #191919,
5px 5px 100px 500px rgba(0, 255, 0, 0.28)
;
}
}
input[type=range] {
accent-color: #ff9d65;
display: none;
cursor: move;
margin-right: 1rem;
}
.form-input {
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
width: 100%;
}
.form-input input[type=text] {
color: #ff9d65;
font-size: 15px;
font-family: "JetBrains Mono", monospace;
background: none;
border: none;
text-align: right;
width: 1.7rem;
}
output {
color: #ff9d65;
&:hover input {
display: inline;
}
}