-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathequip.css
More file actions
116 lines (100 loc) · 1.78 KB
/
equip.css
File metadata and controls
116 lines (100 loc) · 1.78 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
:root {
font-size: 18px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}
body {
height: 100vh;
counter-reset: lists;
overflow-x: hidden;
}
header {
display: flex;
justify-content: flex-start;
align-items: center;
padding: 1.5em 3.6em;
background-color: #438eb9;
color: white;
}
header img {
height: 5rem;
aspect-ratio: 1/1;
border-radius: 1.5rem;
}
header h1 {
font-size: 2.09em;
font-weight: 600;
letter-spacing: 0.07em;
margin-left: 1em;
}
form {
padding: 2rem 3.7rem;
}
#equip-h3 {
font-size: 3em;
width: 100%;
margin: 1em 36%;
}
ul {
display: grid;
grid-template-columns: 1fr 1fr;
place-items: center;
list-style-type: none;
margin-top: 2em;
padding: 2.5rem;
}
ul li {
font-size: 1.7em;
width: 40rem;
padding: 1.4rem;
display: flex;
justify-content: space-between;
counter-increment: lists;
}
ul li::before {
content: counter(lists) '.) ';
}
ul li.column1 {
grid-column: 1 / 2;
}
ul li.column2 {
grid-column: 2;
}
li :is(#decrement, #increment) {
font-size: 1.2em;
border: 3px solid #555555;
width: 1.6em;
border-radius: 0.45em;
transition: all 0.25s ease;
}
li .counter {
margin: 0 0.7em;
}
li button:hover {
cursor: pointer;
background-color: #555555;
color: white;
}
#confirm {
font-size: 2em;
font-weight: 600;
letter-spacing: 0.07em;
border-radius: 2.5em;
height: 3em;
padding: 0.5em 1.3em;
display: block;
margin: 1em auto;
border: 3px solid #438eb9;
color: #438eb9;
transition: all 0.15s ease;
}
#confirm:hover {
background-color: #ffc657;
border: #ffc657 solid;
cursor: pointer;
color: white;
}