-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdesign.css
More file actions
87 lines (79 loc) · 1.61 KB
/
Copy pathdesign.css
File metadata and controls
87 lines (79 loc) · 1.61 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
@import url("https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@300&display=swap");
body {
font-family: "Zilla Slab", serif;
background-image: url(img.webp);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 100vh;
margin: 0;
padding: 0;
overflow: hidden;
}
/* main */
.main {
background: rgba(255, 255, 255, 0.2);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
color: rgb(0, 0, 0);
text-align: center;
padding: 20px;
}
h1 {
font-size: 24px;
}
/* table design */
.multiplication-table {
background: rgba(255, 255, 255, 0.2);
border-radius: 2em;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
border-radius: 5px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
padding: 20px;
margin: 20px;
text-align: center;
}
.prompt-container {
position: relative;
left: 40%;
}
h2 {
font-size: 18px;
}
#table-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
#table-container div {
padding: 5px;
margin: 5px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #f9f9f9;
width: 120px;
text-align: center;
}
/* Style the prompt input */
input[type="text"] {
padding: 10px;
border: 1px solid #a84706;
border-radius: 5px;
font-size: 16px;
margin: 10px;
}
/* Style the prompt button */
input[type="button"] {
background-color: #cf4e1b;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
/* Hover effect for the button */
input[type="button"]:hover {
background-color: #ee5113;
}