-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (58 loc) · 1.13 KB
/
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
body {
text-align: center;
margin: 40px auto;
max-width: 650px;
line-height: 1.5;
font-size: 18px;
color: #444;
padding: 0 10px;
font-family: Tahoma, Verdana, Segoe, sans-serif;
}
h1, h2, h3 {
line-height: 1.2;
margin: 0;
}
section {
margin: 40px auto;
}
/* -------------------------------------------------------------------------- */
#steamid_converter {
min-width: 300px;
width: 50%;
border: 1px solid #444;
margin: 20px auto;
}
#steamid_converter input {
border: 1px solid #444;
margin: 20px auto;
display: block;
padding: 5px;
width: 80%;
}
#steamid_converter ul {
list-style-type: none;
padding: 0;
padding-bottom: 20px;
margin: 0 auto;
width: 90%;
}
.steamid {
font-weight: bold;
padding-left: 5px;
}
/* -------------------------------------------------------------------------- */
#validation input[type=text]:valid {
color: green;
}
input:invalid {
color: red;
box-shadow: none;
}
#validation form {
margin: 10px auto;
padding: 10px;
}
#validation input {
padding: 5px;
border: 1px solid #d3d3d3;
}