forked from SEACodeCarrots/ReportIt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRI_logstyle.css
More file actions
75 lines (74 loc) · 1.6 KB
/
RI_logstyle.css
File metadata and controls
75 lines (74 loc) · 1.6 KB
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
* {
font-family: helvetica, sans-serif;
}
/*.title {
text-align: center
}*/
@media screen and (min-width: 641px) {
.title {text-align: center;
font-size: 50pt
}
}
@media screen and (max-width: 640px) and (min-width: 321px) {
.title {text-align: center;
}
}
@media screen and (max-width: 320px) {
.title {text-align: center;
}
}
.subtitle {
text-align: center;
font-size: 10pt;
}
input {
width: 66%;
}
#context {
width: 66%;
}
.context {
height: 5em;
width: 30em;
}
.pure-form {
margin-left: auto;
margin-right: auto;
width: 50%;
}
.button {
text-align: center;
margin-left: auto;
margin-right: auto;
width: 10%;
padding-left: 10em;
border-top: 1px solid #96d1f8;
background: #65a9d7;
background: -webkit-gradient(linear, left top, left bottom, from(#f200a5), to(#65a9d7));
background: -webkit-linear-gradient(top, #f200a5, #65a9d7);
background: -moz-linear-gradient(top, #f200a5, #65a9d7);
background: -ms-linear-gradient(top, #f200a5, #65a9d7);
background: -o-linear-gradient(top, #f200a5, #65a9d7);
padding: 5px 10px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
-webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
-moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
box-shadow: rgba(0,0,0,1) 0 1px 0;
text-shadow: rgba(0,0,0,.4) 0 1px 0;
color: white;
font-size: 14px;
font-family: helvetica, sans-serif;
text-decoration: none;
vertical-align: middle;
}
.button:hover {
border-top-color: #28597a;
background: #28597a;
color: #ccc;
}
.button:active {
border-top-color: #1b435e;
background: #1b435e;
}