-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
116 lines (95 loc) · 1.41 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
body {
background-color: #fafafa;
width: 900px;
max-width: 90%;
margin: 0 auto;
}
h1 {
font-size: 40px;
}
body, input, button {
font-size: 16px;
font-family: monospace;
}
body, a, a:visited {
color: #111;
}
p {
margin: .5em 0;
}
h1, h2, .center {
text-align: center;
}
h1 {
margin: .2em 0;
}
form {
display: flex;
}
.hidden {
display: none;
}
#oauth {
text-align: center;
padding: 1em;
}
.text {
margin: 1em 0;
/*font-size: 60%;*/
}
#error span {
background-color: rgba(255, 30, 30, 0.9);
padding: 1em;
border-radius: 5px;
margin: 1em;
display: block;
}
#image {
width: 100%;
height: 500px;
}
#image a {
display: block;
width: 100%;
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
#title, #submit {
padding: .3em .5em;
margin-bottom: 1em;
border-radius: 5px;
border-style: solid;
border-width: 2px;
border-color: #999;
}
#title {
width: 100%;
background-color: white;
margin-right: 1em;
outline-color: #149ACC;
}
#submit {
border-color: #ffbd00;
background-color: white;
cursor: pointer;
}
span.selected {
padding: 2px 3px;
margin-left: -2px;
margin-right: -2px;
}
.selected,
#submit:hover {
background-color: #ffbd00;
}
#title::selection {
background-color: #ffbd00;
}
#title::::-moz-selection {
background-color: #ffbd00;
}
#examples li {
margin-bottom: 0.5em;
}