-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (115 loc) · 2.12 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
*{
box-sizing: border-box;
padding: 0;
margin: 0;
}
body{
font-family: Poppins;
font-size: 18px;
}
.container{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-image: url("./assets/bg1.jpg");
background-size: cover;
}
.area{
width: 375px;
height: 756px;
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: column;
background-color: #ffffff1f;
border-radius: 50px;
backdrop-filter: blur(15px);
transition: 0.2s;
padding: 20px 0;
box-shadow: rgba(0, 0, 0, 0.329) 0px 22px 70px 4px;
border: 0.5px outset #ffffff;
}
.area:hover{
box-shadow: 0px 0px 52px 19px rgba(0, 0, 0, 0.021);
}
.popup{
background-color: #ff0000;
width: 100px;
border-radius: 50px;
padding: 5px 20px;
margin-top: 15px;
position: absolute;
top: 0;
}
.operation{
color: #adadad;
}
.input{
padding-top: 200px;
display: flex;
justify-content: start;
align-items: end;
flex-direction: column;
margin: 0 34px;
}
.input input{
height: 72px;
border: none;
background-color: transparent;
font-size: 26px;
font-weight: 500;
text-align: right;
color: #fff;
}
.input input:focus{
outline: none;
}
.input span{
width: 20px;
height: 20px;
}
.operations-content{
width: 100%;
}
.row{
display: flex;
justify-content: center;
align-items: center;
margin: 20px 0;
}
.row > span{
background-color: #505050;
color: #fff;
width: 62px;
height: 62px;
margin: 0 10px;
border-radius: 50px;
display: flex;
justify-content: center;
align-items: center;
font-size: 26px;
font-weight: 800;
cursor: pointer;
transition: 0.15s;
}
.row > span:hover{
background-color: #5050508f;
}
.row:first-child > span{
background-color: #f1f1f1;
color: #000;
}
.row > span:nth-child(4){
background-color: #FF9500;
color: #fff;
}
.row:last-child > span:first-child{
width: 144px;
}
#clock{
display: flex;
justify-content: center;
align-items: center;
color: #fff;
}