-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
95 lines (80 loc) · 974 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
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
93
94
95
@font-face {
font-family: 'IBM';
src: url('./IBM_BIOS.woff') format('woff');
}
#logo
{
width:100%;
height:100%;
object-fit: cover;
}
body
{
background-color:#15156D;
color:#F2F2F2;
font-family: "IBM", Calibri, "Lucida Console","Lucida", Arial;
font-size:12px;
}
input
{
font-family:"IBM";
font-size:12px;
}
#main_block
{
width:50%;
display:block;
margin:auto;
border: solid 8px #F2F2F2;
padding:2.5%;
}
h1
{
text-align:center;
font-size:24px;
}
h2
{
color:#E2C531;
}
#input_mutant
{
width: 5em;
}
#input_rate
{
width:10em;
}
.center
{
text-align:center;
}
a
{
color:#CE0000;
text-decoration: none;
}
a:hover
{
color:cyan;
text-decoration: none;
}
#input_file
{
color:#CE0000;
}
#mutate_button
{
border: solid 8px #CE0000;
background-color:#15156D;
color: #CE0000;
padding:10px;
text-align:center;
font-size:24px;
}
#mutate_button:hover
{
border: solid 8px cyan;
color: cyan;
cursor:pointer;
}