-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
92 lines (81 loc) · 1.6 KB
/
main.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
@font-face {
font-family: "Shrikhand";
src: url('Shrikhand-Regular.ttf');
}
body{
color: white;
background-color: rgb(27, 27, 27);
}
.screen{
display: block;
margin-top: 5%;
margin: auto;
margin-bottom: 1%;
width: 90%;
height: 50px;
background-color: rgb(0, 0, 0);
border: none;
color: white;
text-align: right;
}
.button button{
display: inline-block;
width: 24%;
height: 100%;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: rgb(22, 22, 22);
border: none;
border-radius: 15px;
box-shadow: 0 6px rgb(5, 5, 5);
}
.button-option button{
display: inline-block;
width: 24%;
height: 100%;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: rgb(22, 22, 22);
border: none;
border-radius: 15px;
box-shadow: 0 6px rgb(5, 5, 5);
}
.button button:hover{
background-color: rgb(15, 15, 15)
}
.button-option button:hover{
background-color: rgb(15, 15, 15)
}
.button button:active{
background-color: rgb(8, 8, 8);
box-shadow: 0 5px rgb(0, 0, 0);
transform: translateY(4px);
}
.button-option button:active{
background-color: rgb(8, 8, 8);
box-shadow: 0 5px rgb(0, 0, 0);
transform: translateY(4px);
}
.button {
display: block;
margin: auto;
margin-top: 15px;
width: 90%;
height: 80px;
}
.button-option{
display: block;
margin: auto;
margin-top: 10px;
width: 90%;
height: 20px;
}
.line-1{
margin-top: 5px;
}