-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (39 loc) · 731 Bytes
/
style.css
File metadata and controls
44 lines (39 loc) · 731 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
*, *::before, *::after {
box-sizing: border-box;
font-family: sans-serif;
}
body {
padding: 0;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
background-color: #333;
}
.container {
width: 800px;
max-width: 80%;
background-color: white;
padding: 10px;
border-radius: 5px;
box-shadow: 0 0 10px 2px;
}
.btn-grid {
display: grid;
grid-template-columns: repeat(1, auto);
gap: 10px;
margin-top: 20px;
}
.btn {
background-color: orange;
border: 1px solid black;
border-radius: 5px;
padding: 5px 10px;
color: black;
outline: none;
}
.btn:hover {
border-color: lightcyan;
}