-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyling.css
More file actions
113 lines (96 loc) · 1.9 KB
/
styling.css
File metadata and controls
113 lines (96 loc) · 1.9 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
:root {
--back: rgb(0, 9, 26);
--sec-back:rgb(3, 38, 54);
--sec-theme-white:rgb(191, 233, 240);
--text:rgb(43, 223, 223);
--theme-grey:rgb(29, 87, 97);
--theme-white:rgb(219, 250, 255);
--selected:rgb(161, 0, 0);
--btn-size:100px;
--output-size:500px;
--calc-display:flex;
--btn-font:1.5rem;
}
body {
background-color: var(--back);
color:var(--theme-white);
}
@-moz-document url-prefix(){
.center {
width: -moz-fit-content;
}
}
.center {
width:fit-content;
margin: 10px auto;
}
.calc {
display: var(--calc-display);
}
.output {
width:var(--output-size);
height: var(--output-size);
background-color: var(--theme-white);
overflow-y: auto;
border-radius: 25px;
color:var(--back);
font-size: 1.5rem;
border: 15px solid var(--sec-back);
}
.output > div {
padding:10px;
width: auto;
}
.output > div > p.selected {
color:var(--theme-white);
background-color: var(--sec-back);
}
.output > div > p {
margin: 2px 0px;
}
.output > div:nth-child(odd){
background-color: var(--theme-white);
}
.output > div:nth-child(even){
background-color: var(--sec-theme-white);
}
.buttons {
display: flex;
justify-content: center;
width:330px;
flex-wrap: wrap;
margin:10px;
}
.btn {
width: var(--btn-size);
height: var(--btn-size);
font-size: 2rem;
display: flex;
align-items: center;
justify-content: center;
margin:5px;
background-color: var(--sec-back);
color:var(--theme-white);
border-radius: 25px;
user-select: none;
}
.buttons > div.enter {
width: calc(var(--btn-size) * 2);
margin:10px;
}
.click-btn:hover {
cursor: pointer;
}
.input {
display: flex;
flex-wrap: wrap;
width: auto;
}
.layouts {
display: flex;
justify-content: center;
margin:10px;
}
.btn-selected {
background-color: var(--selected);
}