-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
53 lines (46 loc) · 848 Bytes
/
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
body {
padding: 0;
margin: 0;
display: flex;
justify-content:left;
width: 100vw;
height: 100vh;
background-color: #333
}
button:disabled {
color: grey
}
.container {
width: 600px;
max-width: 80%;
background-color: #333;
padding: 10px;
border-radius: 5px;
box-shadow: 0 0 0 0;
}
.btn-grid{
display: grid;
grid-template-columns: repeat(4, auto);
gap: 10px;
margin-top: 20px;
}
.btn {
background-color: white;
border: 1px solid white;
padding: 5px 10px;
color: black;
outline: none;
}
.btnSmall {
background-color: white;
border: 1px solid white;
padding: 1px 10px;
color: black;
outline: none;
}
.btnSmall:hover {
border-color: black
}
.btn:hover {
border-color: black;
}