-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (79 loc) · 1.5 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
/* Defaut text styling START*/
/* font family: 'Roboto', sans-serif; */
body {
font-family: 'Roboto', sans-serif;
font-size: 1.2em;
}
h1 {
margin-block-start: 0;
margin-block-end: 0em;
}
h2 {
margin-block-start: 0;
margin-block-end: 0.4em;
}
pre {
margin-top: 0em;
margin-left: 0.2em;
}
/* Defaut text styling END*/
@keyframes pulse {
0% {
opacity: 0.5;
}
50% {
opacity: 1;
}
100% {
opacity: 0.5;
}
}
.pulsing {
animation: pulse 2s infinite;
}
.grid-container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 0.5em;
padding: 0.5em;
margin: auto;
justify-items: stretch;
}
.grid-item1 {
border: 1px solid #ccc;
padding: 0.5em;
font-size: 1.2em;
background-color: #f5f5f5;
}
.grid-item2 {
border: 1px solid #ccc;
padding: 0.5em;
text-align: center;
font-size: 1.2em;
background-color: #f5f5f5;
}
.grid-item2-table table {
border-spacing: 1px;
text-align: center;
font-size: 22px;
margin-left: auto;
margin-right: auto;
}
.grid-item2-table td {
width: 30px;
height: 30px;
font-size: 22px;
line-height: 1;
box-sizing: border-box;
padding: 0;
border: 0;
text-align: center;
vertical-align: middle;
}
.grid-item3 {
border: 1px solid #ccc;
padding: 0.5em;
text-align: center;
font-size: 1.2em;
background-color: #f5f5f5;
}