-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (65 loc) · 1.21 KB
/
Copy pathstyle.css
File metadata and controls
67 lines (65 loc) · 1.21 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
/* import Google font - poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', Verdana, sans-serif;
}
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: #0d0d0e;
}
.text, .key-code, .key-name{
font-size: 45px;
color: #17A2BB;
font-weight: 500;
}
.text{
font-size: 30px;
text-align: center;
}
.box.active .text{
display: none;
}
.box{
width: 290px;
padding: 25px;
border-radius: 15px;
background: #fff;
}
.content, .key-code, .details{
display: flex;
align-items: center;
justify-content: center;
}
.box .content{
display: none;
flex-direction: column;
}
.box.active .content{
display: flex;
}
.content .key-code{
height: 110px;
width: 110px;
margin-bottom: 15px;
border-radius: 50%;
border: 5px solid #7f8c8f;
}
.content .details{
width: 100%;
margin-top: 15px;
justify-content: space-evenly;
}
.details p{
width: 100px;
font-size: 18px;
text-align: center;
}
.details p:last-child{
border-left: 1px solid #bfbfbf;
}