-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (102 loc) · 1.67 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
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
/* Global Styles */
*{
box-sizing: border-box;
margin: 0;
padding: 0;}
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
}
/* Main Menu Styles */
.main-menu {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.main-menu h1 {
font-size: 3rem;
margin-bottom: 1rem;
}
.main-menu h2 {
font-size: 1.5rem;
margin-bottom: 2rem;
}
.main-menu button {
background-color: #007bff;
color: #fff;
font-size: 1.25rem;
padding: 1rem 2rem;
border: none;
border-radius: 5px;
margin-bottom: 1rem;
cursor: pointer;
transition: all 0.2s ease;
}
.main-menu button:hover {
background-color: #0062cc;
}
/* Screens Styles */
.screen {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.screen h1 {
font-size: 3rem;
margin-bottom: 1rem;
}
.screen label {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
.screen input {
font-size: 1.25rem;
padding: 0.5rem;
margin-bottom: 1rem;
border-radius: 5px;
border: 1px solid #ccc;
}
.screen button {
background-color: #007bff;
color: #fff;
font-size: 1.25rem;
padding: 1rem 2rem;
border: none;
border-radius: 5px;
margin-top: 1rem;
cursor: pointer;
transition: all 0.2s ease;
}
.screen button:hover {
background-color: #0062cc;
}
/* Specific Screen Styles */
#inventory-list {
list-style-type: none;
margin: 0;
padding: 0;
}
#inventory-list li {
font-size: 1.25rem;
margin-bottom: 0.5rem;
}
#inventory-list-edit {
list-style-type: none;
margin: 0;
padding: 0;
}
#inventory-list-edit li {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 1.25rem;
margin-bottom: 0.5rem;
}
#inventory-list-edit li input {
width: 50%;
}