-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (112 loc) · 2.1 KB
/
style.css
File metadata and controls
113 lines (112 loc) · 2.1 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@500;800&display=swap');
*{
font-family: 'Urbanist', sans-serif;
font-weight: bold;
box-sizing: border-box;
padding: 0;
margin: 0;
}
body{
background-color: #18171D;
width: 256px;
height: 287px;
overflow: hidden;
}
.main{
display: flex;
width: 256px;
height: 287px;
flex-direction: column;
overflow: hidden;
background-color: #18171D;
box-shadow: 8px 8px 24px #0000004D;
border: 1px solid #39383D;
gap:16px;
align-items: center;
}
.logoh{
width: 100%;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
margin-top: 16px;
}
.holder{
width: 224px;
height: 101px;
text-align: center;
}
.text{
font-size: 24px;
color: #9C9C9C;
width: 224px;
height: 42px;
}
.btn{
display: flex;
width: 224px;
height: 43px;
background-color: white;
justify-content: center;
align-items: center;
border-radius: 8px;
margin-top: 12px;
box-shadow: 2px 2px 12px #ffffff4d;
cursor: pointer;
}
.btn span{
color: #2e2d33;
font-size: 18px;
}
.btn:hover{
background-color: #ffcc00;
box-shadow: 5px 5px 12px #ffcc004d;
}
.bar{
display: flex;
flex-direction: row;
justify-content: space-around;
width: 234px;
}
.btn-bar{
width: 64px;
height: 43px;
background-color: white;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 2px 2px 8px #ffffff4d;
cursor: pointer;
}
.bbr{
width: 64px;
height: 43px;
background-color: white;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 2px 2px 8px #ffffff4d;
cursor: pointer;
}
.bbr:hover{
background-color: #ff3030;
box-shadow: 3px 3px 8px #ff000089;
}
.btn-bar:hover{
background-color: #ffcc00;
box-shadow: 3px 3px 8px #fffc004d;
}
.madeby{
width: 250px;
height: 16px;
display: flex;
align-items: center;
justify-content: center;
}
.madeby span{
font-size: 10px;
color: #9E9E9E;
}