-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
93 lines (81 loc) · 1.69 KB
/
styles.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
/* Variables */
:root{
--main-font-color: #333333;
--main-background-color: #f5f5f5;
--main-color: #4caf50;
--accent-color: #ff9800;
--main-font: 'Franklin Gothic Medium', Arial, sans-serif;
--code-font: 'Courier New', Courier, monospace;
--code-font-color: #d32f2f;
--code-background: #f0e68c;
}
/* Global Styles */
* {
font-family: var(--main-font);
}
body{
display: flex;
justify-content: center;
}
.content-container{
width: 60vw;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
code {
color: var(--code-font-color);
background: var(--code-background);
font-family: var(--code-font);
padding: 0 5px;
border-radius: 5px;
}
/* Table Styles */
.table-group {
display: flex;
text-align: center;
justify-content: center;
width: 100%;
margin-bottom: 20px;
}
.table-group :first-child {
margin-right: 30px;
}
th, td {
padding: 2px 10px;
text-align: center;
}
.highlight {
background: var(--accent-color);
}
/* Button Styles */
.button-group {
display: flex;
flex-wrap: wrap;
width: 100%;
align-items: center;
row-gap: 20px;
justify-content: space-around;
border: solid 2px var(--main-color);
padding: 10px;
margin-top: 20px;
}
button {
border: none;
background: var(--main-color);
text-align: center;
padding: 10px;
border-radius: 5px;
box-sizing: border-box;
box-shadow: 0px 5px 5px rgba(0,0,0,0.1);
}
button:hover {
filter: brightness(95%);
cursor: pointer;
transform: translateY(1px);
box-shadow: 0px 4px 4px rgba(0,0,0,0.1);
}
.active {
background: var(--accent-color);
}