-
Notifications
You must be signed in to change notification settings - Fork 5
/
style.css
65 lines (58 loc) · 1.18 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
.container {
display: grid;
justify-content: center;
align-content: center;
grid-template-columns: repeat(4, 100px);
grid-template-rows: minmax(100px, auto) repeat(5, 100px);
min-height: 100vh;
}
button {
cursor: pointer;
outline: none;
font-size: 20px;
background-color: white;
border: 3px solid #333;
}
button:hover {
background-color: rgba(225, 225, 225, 70);
color: white;
}
.output {
grid-column: 1 / -1;
background-color: #333;
border-radius: 20px 20px 0 0;
word-wrap: break-word;
word-break: break-all;
-ms-word-break: break-all;
-ms-word-wrap: break-word;
}
.overoutput {
background-color: rgb(42, 101, 128);
padding-right: 10px;
padding: 10px;
text-align: end;
font-size: 20px;
color: rgba(225, 225, 225, 100);
min-height: 25px;
}
.tempoutput {
background-color: #333;
color: #fff;
font-size: 20px;
padding: 10px;
min-height: 25px;
}
.underoutput {
padding: 20px;
text-align: end;
font-size: 30px;
color: white;
min-height: 50px;
}
.title {
text-align: center;
height: 40px;
padding-top: 10px;
font-size: 25px;
color: white;
}