-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
53 lines (43 loc) · 765 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
.strike {
text-decoration: line-through;
}
h1, p, * {
font-family: Open Sans, sans-serif;
color: #fff;
}
h1, h1 span {
color: #fff;
font-family: Ubuntu, sans-serif;
}
.gen {
max-width: 95%;
}
body {
background-color: #2F72FF;
}
input, textarea {
color: black;
}
input[type="text"][disabled] {
background-color: grey;
}
.pageinner {
max-width: 70%;
background-color: #0040FF;
margin-left: auto;
margin-right: auto;
padding: 3px;
padding-top: 0px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
textarea {
max-width: 99.5%;
}
label.pointer{cursor:pointer;}