-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (57 loc) · 1.32 KB
/
Copy pathstyle.css
File metadata and controls
64 lines (57 loc) · 1.32 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
min-height: 100vh;
background: linear-gradient(to right, #2e1e4f, #47135e);
}
.container {
display: flex;
flex-direction: column;
padding: 2rem;
background: rgba(255, 255, 255, 0.25);
box-shadow: 0px 8px 32px 0px rgba(31, 38, 135, 0.37);
backdrop-filter: blur(4px);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.18);
transition: background 0.3s ease-in-out;
}
.key-container {
display: flex;
flex-direction: column;
font-size: 20px;
font-weight: bold;
padding: 20px;
color: #090909;
margin: 2.5rem;
min-width: 150px;
/* background: rgba(0,255,252,0.5); */
box-shadow: 0px 8px 32px 0px rgba(31, 38, 135, 0.37);
backdrop-filter: blur(2.5px);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.18);
transition: background 0.3s ease-in-out;
}
.key-container h4 {
position: absolute;
top: -2rem;
left: 0;
text-align: center;
width: 100%;
}
.key-content {
margin-top: 10px;
}
.container:hover {
background: rgba(255, 255, 255, 0.1);
}
.key-container:hover {
background: rgba(125, 203, 200, 0.686);
}