-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyleish.css
56 lines (49 loc) · 1 KB
/
styleish.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
@import url("https://fonts.googleapis.com/css?family=Raleway:900&display=swap");
body {
font-family: Arial, sans-serif;
overflow-x: hidden;
margin: 0;
padding: 0;
background: #1a1a1a
}
h1 {
font-weight: bold;
font-size: 80px;
color: #ffff;
margin: 0;
}
/* Forum */
input[type=text],
select,
textarea {
color: #000000;
width: 100%;
padding: 12px;
border: 1px solid #ffffff00;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
}
input[type=submit] {
background-color: #507052;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: all 1s;
}
input[type=submit]:hover {
background-color: #3f5a41;
}
.containerForum {
top: 20%;
z-index: -1;
position: absolute;
border-radius: 5px;
background-color: #cfcbcb00;
width: 75%;
padding: 20px 190px;
}