-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (52 loc) · 1.15 KB
/
style.css
File metadata and controls
61 lines (52 loc) · 1.15 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
* {
font-family: 'Verdana';
}
body {
margin: 0;
background-color: #1F1F1F;
}
.header {
border-top: 3px solid;
border-image-slice: 1;
border-image-source: linear-gradient(to left, #171818, rgb(255, 101, 101), #171818);
padding: 0;
margin: 0;
background: rgb(31,31,31);
background: linear-gradient(0deg, rgba(31,31,31,1) 0%, rgba(23,24,24,1) 100%);
padding-bottom: 10px;
text-align: center;
}
h1 {
font-weight: 800;
color: rgb(255, 101, 101) !important;
}
h2 {
font-weight: 0;
color: white;
}
.main-bit {
height: 100%;
background-color: #1F1F1F;
margin: 50px;
}
.link-button {
position: relative;
display:block;
padding: 30px;
background-color: #333333;
color: white;
border: 1px solid rgba(255, 101, 101, 0.342);
margin-bottom: 15px;
border-radius: 5px;
text-align: center;
text-decoration: none;
font-size: large;
transition: all 300ms;
}
.link-button:hover {
background-color: #524545;
}
.link-button a, a:visited, a:active {
text-decoration: none;
color: white;
}