-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmain.css
65 lines (56 loc) · 1.06 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
html{
font-family: Orbitron;
background: black;
color: #1be71b;
}
.hashes {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 12px;
}
.hash_algo{
border: 0.6px solid rgb(44, 140, 49);
padding: 10px;
}
.algo{
font-size: 19px;
}
.hash{
font-size: 15px;
}
.exec-time{
font-weight: bold;
}
.submit{
background-color: green;
border: 2px solid green;
color: #fff;
width: 100px;
margin-left: 20px;
font-family: Orbitron;
-webkit-transition: all 0.5s ease-in;
-moz-transition: all 0.5s ease-in;
-ms-transition: all 0.5s ease-in;
-o-transition: all 0.5s ease-in;
transition: all 0.5s ease-in;
}
.submit:hover{
cursor: pointer;
font-size: 15px;
-moz-transform: scale(1.1);
-webkit-transform: scale(1.1);
-o-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
-webkit-transition: all 0.5s ease-in;
-moz-transition: all 0.5s ease-in;
-ms-transition: all 0.5s ease-in;
-o-transition: all 0.5s ease-in;
transition: all 0.5s ease-in;
}
small{
font-size: 12px;
}
p{
margin: 10px 0;
}