forked from bmoreinis/fakenews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.css
executable file
·111 lines (98 loc) · 2.17 KB
/
form.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
body
{
margin:0;
padding:0;
height:50%;
}
#blankLinks input, input#submit, input#cancel {
float:left;
clear:left;
}
.movedown {
padding-top:40%;
color: #303030;
font-family: 'Open Sans', Tahoma, Arial;
font-size: 16px;
font-size: 1rem;
line-height: 1.75;
}
#FakeNewsForm {
position: fixed;
top: 0;
left: 0;
z-index: 200;
height: 400px;
padding:15px;
width: 100%;
border-radius: 10px;
z-index: 10001;
background-color:transparent;
}
#FakeNewsForm form {
overflow-y: scroll;
background-color: #85e8f7;
position: absolute;
bottom:0;
width:500px;
left:10px;
right:0;
top:20px;
z-index: 10001;
padding-top:20px!important;
}
#FakeNewsForm a {
color:blue;
}
#FakeNewsForm label {
display: block;
color:#000;
margin-left:20px;
}
#FakeNewsForm ol li {
color:#000;
}
#FakeNewsForm button, #FakeNewsForm input {
margin: 5px 5px 5px 20px;
width:400px;
padding: 0.6em 1em;
font-family: 'Montserrat', Tahoma, Arial;
font-size: 15px;
font-size: 0.9375rem;
font-weight: normal;
text-transform: uppercase;
border: none;
text-decoration: none;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
line-height: normal;
}
#FakeNewsForm #submit, #FakeNewsForm #submitAll, #FakeNewsForm #pageOne, #FakeNewsForm #pageTwo {
clear:all;
display:block;
}
#FakeNewsForm #cancel, #FakeNewsForm #cancelAll {
display:inline;
}
#FakeNewsForm #submit, #FakeNewsForm #cancel, #FakeNewsForm #submitAll, #FakeNewsForm #cancelAll {
font-weight:bold;
}
#FakeNewsForm #submit:hover, #FakeNewsForm #submitAll:hover, #FakeNewsForm #cancel:hover, #FakeNewsForm #cancelAll:hover {
color:yellow;
}
#FakeNewsForm #submit, #FakeNewsForm #cancel, #FakeNewsForm #submitAll, #FakeNewsForm #cancelAll {
color: #fff;
background: #ee4444;
font-weight:bold;
}
#FakeNewsForm select, #FakeNewsForm textarea {
color: #303030;
font-family: 'Open Sans', Tahoma, Arial;
font-size: 16px;
font-size: 1rem;
line-height: 1.75;
}
div#blankLinks input.emptyField {
width:600px;
}
div#blankLinks input.newField {
}