-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (86 loc) · 2 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
*{
/* border:1px solid red; */
font-family: 'Poppins', sans-serif;
}
body{
background-image: url(./background.jpeg);
background-position: center;
background-repeat: no-repeat;
background-size:auto;
font-family: roboto;
}
.title-name{
font-size: 2rem;
}
#display-status{
font-size: 1.5rem;
}
.container{
display: flex;
flex-wrap: wrap;
width: 15rem;
height: 15rem;
align-content: center;
align-items: center;
justify-content: center;
margin: 2rem auto;
color: #fff;
margin: 40px auto;
background-color: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 15px;
padding: 1rem;
backdrop-filter: blur(10px);
}
.elem{
width: 4rem;
height: 4rem;
margin:0.3rem;
background-color: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 100px;
backdrop-filter: blur(10px);
display: flex;
align-content: center;
align-items: center;
justify-content: center;
color:rgba(255, 255, 255, 0.959);
font-size: 3rem;
font-weight:normal;
}
.glass-panel {
color: #fff;
margin: 40px auto;
background-color: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.1);
width: 100%;
border-radius: 15px;
padding: 1rem;
backdrop-filter: blur(10px);
display: flex;
flex-wrap: wrap;
width: 15rem;
align-content: center;
align-items: center;
justify-content: center;
margin: 2rem auto;
}
.glass-button {
display: inline-block;
padding: 24px 32px;
border: 0;
text-decoration: none;
border-radius: 15px;
background-color: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.1);
backdrop-filter: blur(30px);
color: rgb(255, 255, 255);
font-size: 14px;
letter-spacing: 2px;
cursor: pointer;
text-transform: uppercase;
margin:1rem auto;
}
.glass-button:hover {
background-color: rgba(255,255,255,0.2);
}