-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (65 loc) · 954 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
.btn {
font-size: 18px;
background-color: black;
color: white;
border: 1px, solid, white;
}
.btn: focus{
background-color: white;
color: black;
border: 1px, solid, black;
}
.inp{
width: 40px;
height: 30px;
margin: 5px;
font-size: 12px;
color: black;
padding: 0px;
text-align: center;
}
#continue_bttn {
text-align: center;
}
#next_bttn {
text-align: center;
}
.inp_div {
display: inline;
}
.block {
display: block;
margin: auto;
width: 40%;
padding: 10px;
}
#footer {
width: 100%;
clear: both;
position: relative;
text-align: center;
font-size: large;
bottom: -10vh;
font-weight: 900;
background: grey;
padding: .5%;
opacity: .85;
color: white;
}
#me {
color: black;
text-decoration: none;
}
#me:visited {
text-decoration: none;
}
#me:hover {
color: aqua;
text-decoration: none;
}
#info_link :hover {
text-decoration: underline;
}
#info_link :visited {
text-decoration: none;
}