-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (48 loc) · 882 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
html, body {
height: 100%;
width: 100%;
font-family: Arial, Helvetica, sans-serif;
background-color: #333232;
color: #fff;
perspective: 800px;
perspective-origin: center;
}
.button{
width: 60px;
padding: 20px;
margin: 0 3px;
border: 2px solid black;
border-radius: 9px;
cursor: pointer;
color: aqua;
background-color: grey;
}
.row{
margin: 8px 0;
}
.row input{
width: 291px;
font-size: 20px;
margin: 0;
padding: 10px 0px;
border: 2px solid black;
border-radius: 5px;
background-color: #1e1e1e;
color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.text-center{
text-align: center;
}
.mx-auto{
margin: auto;
}
.flex{
display:flex;
}
.flex-column{
flex-direction: column;
}
.items-center{
align-items: center;
}