-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (58 loc) · 1.27 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
body {
align-items: center;
background-color: #6a6a6a;
display: flex;
height: 100vh;
justify-content: center;
grid-template-columns: 200px;
}
.element {
align-items: center;
background-color: #e6cb51;
border-radius: 10px;
height: 80px;
justify-content: center;
width: 80px;
}
.row{
margin: 8px 0;
}
.row input{
width: 330px;
font-size: 50px;
align-items: center;
background-color: #d8be47;
box-shadow:
12px 12px 16px 0 rgba(0, 0, 0, 0.25),
-8px -8px 12px 0 rgba(255, 255, 255, 0.3);
border-radius: 50px;
justify-content: center;
margin-right: 4rem;
}
.button{
box-shadow:
12px 12px 16px 0 rgba(255, 255, 255, 0.3) inset,
-8px -8px 12px 0 rgba(0, 0, 0, .25) inset;
border: none;
outline: none;
}
.elementV {
align-items: center;
background-color: #e6cb51;
border-radius: 10px;
height: 50px;
justify-content: center;
width: 165px;
}
.buttonV{
box-shadow:
12px 12px 16px 0 rgba(255, 255, 255, 0.3) inset,
-8px -8px 12px 0 rgba(0, 0, 0, .25) inset;
border: none;
outline: none;
}
@media (min-width: 600px) {
body {
grid-template-columns: 200px 200px;
}
}