-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.css
More file actions
124 lines (116 loc) · 2.43 KB
/
Copy paththeme.css
File metadata and controls
124 lines (116 loc) · 2.43 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
114
115
116
117
118
119
120
121
122
123
124
:root {
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
#background-wrapper {
background-image: repeating-linear-gradient(130deg, orange 0%, orange 5%, black 5%, black 10%);
z-index: 0;
}
#background-wrapper > * {
z-index: 1;
}
main {
overflow-x: hidden;
overflow-y: auto;
margin: auto;
height: 80vh;
width: 90vw;
background-color: rgba(127, 83, 79, 0.97);
scrollbar-width: thin;
scrollbar-gutter: both-edges;
}
header {
height: 10vh;
background: rgba(139, 0, 0, 0.5);
}
footer {
height: 10vh;
opacity: 50%;
background: darkred;
p {
color: white;
opacity: 100%;
}
}
h1 {
--outline-col: rgba(205, 205, 206, 0.8);
font-size: clamp(1vh, 8vh, 13vw);
text-align: center;
text-shadow: 1px 1px 0 var(--outline-col), 1px -1px 0 var(--outline-col), -1px 1px 0 var(--outline-col), -1px -1px 0 var(--outline-col);
text-decoration: white solid;
}
p {
font-family: sans-serif;
}
form {
height: 10%;
border: 5px groove grey;
fieldset {
position: relative;
border: none;
height: 100%;
width: fit-content;
margin: auto;
}
button, label, input {
display: inline-block;
width: fit-content;
padding-inline: 20px;
height: 100%;
}
label {
font-family: sans-serif;
display: initial;
}
input {
background: darkgrey;
}
#btn-main {background-color: #3C4D61}
#btn-confirm {background-color: #937B32;}
#btn-clear-all {background-color: orangered}
}
.main-display-div {
height: 20vh;
background: rgba(242, 48, 5, 0.70);
transition: background-color 0.225s ease;
}
.main-display-div > p {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: clamp(1vh, 8vh, 13vw);
}
#container {
position: relative;
display: grid;
grid-template-rows: auto;
grid-template-columns: repeat(4, 25%);
}
#container div {
height: 10vh;
z-index: 2;
background-color: rgba(132, 86, 77, 0.95);
}
div {
position: relative;
border: 1px solid black;
border-radius: 5px;
text-align: center;
}
p {
position: relative;
font-family: sans-serif;
width: fit-content;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
@media only screen and (max-width: 750px) {
form {
height: fit-content !important;
width: 100% !important;
}
}