-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (58 loc) · 1.15 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
:root{
--size: 16;
}
.grid-container{
height: 715px;
width: 900px;
margin: 0 auto;
background: red;
border-radius: 15px;
box-shadow: 10px 5px 5px black;
}
.text-container{
width: 100%;
text-align: center;
height: 65px;
line-height: 65px;
text-transform: uppercase;
font-family: verdana;
font-size: 30px;
font-weight: 700;
color: gold;
text-shadow: 2px 2px 1px #464646
}
.grid{
display: grid;
grid-template-columns: repeat(240, 1fr);
grid-template-rows: repeat(165, 1fr);
height: 550px;
width: 800px;
margin: auto;
background: linear-gradient(0.25turn, #aeafb0, #9a9b9c, #8c8c8c);
box-shadow: inset 2px 2px 2px 1px #4C4023,
inset -2px -2px 2px 1px #8C8083;
}
.drawn{
background-color: rgb(32, 32, 32);;
}
.img-container{
box-sizing: border-box;
display: inline-block;
width: 100%;
height: 100px;
padding: 5px;
margin: 1% auto;
}
.img-container img {
height: 90%;
}
.right-knob{
float: right;
}
.container{
padding: 1%;
display: flex;
width: 500px;
margin: auto;
justify-content: center;
}