-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (37 loc) · 766 Bytes
/
style.css
File metadata and controls
45 lines (37 loc) · 766 Bytes
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
/* Colors: */
:root{
--transparent: rgba(255, 255, 255, 0.2);
--title: rgb(165, 148, 228);
--button: rgb(41, 27, 0);
}
/* My document */
.center{
display: flex;
justify-content: center;
text-align: center;
align-items: center;
}
.padding{
padding-top: 400px;
}
.container{
transform: scale(4);
background-color: var(--transparent);
border: 3px solid black;
}
th{
padding: 10px;
background-color: var(--title);
border: 3px solid black;
}
.number{
padding-top: 10px;
}
body{
background: linear-gradient(90deg, rgb(155, 155, 236), rgb(250, 101, 101));
font-family: sans-serif;
}
button{
background-color: var(--title);
color:var(--button);
}