forked from uglycookies/issues
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
100 lines (91 loc) · 1.48 KB
/
styles.css
File metadata and controls
100 lines (91 loc) · 1.48 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
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
popup_container {
font-family:Helvetica sans-serif
position: fixed;
top: 20%;
left: 50%;
width:100%;
height:100%;
opacity:.95;
top:0;
left:0;
display:none;
position:fixed;
background-color:#313131;
overflow:auto
}
#popup {
position:absolute;
display: flex;
justify-content: center;
left:50%;
top:17%;
margin-left:-202px;
}
#form {
max-width:300px;
min-width:250px;
padding:10px 50px;
border:2px solid gray;
border-radius:10px;
font-family:raleway;
background-color:#fff
}
#header_container {
margin-left: auto;
margin-right: auto;
display: flex;
width: 1000px;
}
#bug_text_container {
margin-left: 100px;
}
#bug_image {
height: 100px;
width: auto;
}
#submit_btn {
margin-left: auto;
margin-right: auto;
margin-bottom: 20px;
text-decoration:none;
margin-top: 20px;
width: 200px;
text-align:center;
display:block;
background-color:#1a0000;
color:#fff;
border:1px solid #1a0000;
padding:10px 0;
font-size:20px;
cursor:pointer;
border-radius:5px
}
#submit_btn:hover {
background-color:#cc0000;
border:1px solid #cc0000;
}
.input_field {
margin-top: 10px;
display: flex;
}
.inputs {
margin-left:auto;
margin-right:0;
margin-top: 13px;
height: 30px;
width: 150px;
border-radius: 3px;
}
button {
position: fixed;
top: 15%;
text-align:center;
display:block;
background-color:blue;
color:#fff;
border:1px solid blue;
padding:10px;
font-size:20px;
cursor:pointer;
border-radius:5px
}