-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
113 lines (106 loc) · 2.49 KB
/
index.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
*{
margin: 0;
padding: 0;
}
body{
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(203, 217, 206, 0.08);
}
.heading{
margin-top: 20px;
letter-spacing: 2px;
font-family: 'Outfit', sans-serif;
grid-column: span 9;
color: rgb(105, 103, 103);
}
.container{
border-radius: 13px;
border: 11px solid rgb(104, 101, 101);
position: relative;
top: 130px;
width: 250px;
height: 400px;;
display: grid;
grid-template-rows: 0.2fr 0.2fr 0.2fr 0.2fr 0.2fr 0.2fr 0.2fr 0.2fr;
grid-template-columns: 0.1fr 0.3fr 0.3fr 0.3fr 0.3fr 0.3fr 0.3fr 0.3fr 0.3fr;
/* grid-template-rows: 0.2fr 0.2fr 0.2fr 0.2fr 0.2fr 0.2fr 0.2fr;
grid-template-columns: 0.3fr 0.3fr 0.3fr 0.3fr 0.3fr 0.3fr ; */
gap: 7px;
padding: 12px;
background-color: rgba(108, 183, 224, 0.61);
}
.items{
background-color: rgba(239, 232, 232, 0.701);
display: flex;
justify-content: center;
align-items: center;
}
.display{
font-family: 'Rajdhani', sans-serif;
font-weight:300;
grid-column: span 9;
background-color: rgb(59, 58, 58);
color: white;
letter-spacing: 1.5px;
word-break: break-all;
}
.arithmetic{
grid-column: span 3;
text-align: center;
}
.arithmetic-base{
font-family: 'Outfit', sans-serif;
letter-spacing: 2px;
background-color: rgba(234, 192, 192, 0.678);
grid-column: span 9;
}
.clicked{
font-family: 'Outfit', sans-serif;
font-weight:900;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(255, 255, 255, 0.674);
border-color: rgb(255, 255, 255);
cursor: pointer;
transition: all 0.2s;
}
.clicked:hover{
background-color: grey;
}
a{
text-decoration: none;
}
a:visited{
color: black;
}
.dynamic_text{
width: 100%;
height: 100%;
background-color: red;
}
@media only screen and (min-width: 202px) and (max-width: 255px) {
.container{
margin-top: 50px;
border-radius: 13px;
width: 300px;
height: 300px;
padding: 10px;
}
}
@media only screen and (min-width: 100px) and (max-width: 202px) {
.container{
margin-top: 90px;
border-radius: 13px;
width: 150px;
height: 300px;
padding: 10px;
}
.heading{
font-size: 12px;
}
}