-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (96 loc) · 2.16 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
body{
background-image: url(https://user-images.githubusercontent.com/39142850/67110554-fdea5400-f20d-11e9-834a-d459a612b7b1.gif);
background-size:cover;
display : flex;
flex-direction: column;
justify-content: center;
align-items: center;
width : 100%;
height : 70vh;
}
h1{
left : 50px;
font-family: "Playwrite DK Uloopet",cursive;
}
.calc-body{
display : grid;
grid-template-rows: 1fr 1fr 1fr 1fr ;
grid-template-columns: 1fr 1fr 1fr 1fr;
gap : 15px;
}
.num{
cursor : pointer;
width : 65px;
height : 65px;
/* position : relative; */
background-color: rgba(255,255,255,0.3);
font-size : 20px;
color : #000000;
border-radius: 25px;
border : 2px solid #CAE7DF;
backdrop-filter: blur(5px);
font-family: "Ga Maamli",sans-serif;
/* margin : 10px 10px; */
}
.clear{
cursor : pointer;
width : 65px;
height : 65px;
/* position: relative; */
border : 2px solid #CAE7DF;
border-radius : 20px;
background-color:rgba(255,255,255,0.3);
color : #000000;
font-size: 25px;
font-family: "Ga Maamli",sans-serif;
backdrop-filter: blur(5px);
/* margin : 10px 10px; */
}
#result{
cursor: pointer;
width : 250px;
height : 45px;
clear :right;
background-color: rgba(255,255,255,0.3);
color : #000000;
border : 2px solid #CAE7DF;
backdrop-filter : blur(5px);
border-radius : 20px;
font-size : 30px;
font-family: "Ga Maamli",sans-serif;
margin : 35px 10px;
}
.operations{
display : block;
position: relative;
width : 65px;
height : 65px;
/* position : relative; */
background-color: rgba(255,255,255,0.3);
color : #000000;
border : 2px solid #CAE7DF;
backdrop-filter : blur(5px);
font-size : 25px;
border-radius: 20px;
font-family: "Ga Maamli",sans-serif;
/* margin : 20px 10px; */
}
/* .num:hover{
height : 60px;
width : 60px;
font-size: 25px;
}
.clear:hover{
height : 60px;
font-size: 25px;
}
.operations:hover{
height : 60px;
width : 60px;
font-size: 25px ;
} */
@media(max-width : 1200px){
body{
background-size : contain;
}
}