-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (80 loc) · 1.4 KB
/
style.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
@font-face {
font-family: 'top';
src: url('fonts/Dragonlord.otf')
}
@font-face {
font-family: 'bottom';
src: url('fonts/yheart.otf');
}
body {
background-color: black;
text-align: center;
font-family: bottom;
}
h1 {
color: white;
font-size: 300%;
}
input {
width: 60%;
background-color: rgb(34, 34, 34);
border-radius: 6px;
margin-top: 4%;
height: 3rem;
font-size: larger;
text-align: center;
text-transform: uppercase;
}
input:hover {
background-color: black;
}
#white {
border-color: white;
color: white;
}
#red {
border-color: red;
color: red;
}
button {
background-color: rgb(177, 0, 0);
width: 40%;
color: white;
border-radius: 4px;
border-color: white;
margin-top: 5%;
height: 3rem;
font-size: 180%;
}
button:hover {
background-color: rgb(255, 0, 0);
}
a {
color: white;
font-size: larger;
}
#top {
font-family: top;
color: white;
font-size: 350%;
word-spacing: -5px;
margin-left: 2%;
margin-bottom: -20%;
}
#bottom {
font-family: bottom;
color: red;
font-size: 250%;
margin-top: 30%;
margin-left: 2%;
}
#text {
margin-left: 10%;
width: 80%;
background-image: url('img/bg.png');
background-repeat: no-repeat;
background-position: center center;
background-size: 100%;
position: absolute;
display: none;
}