-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (50 loc) · 1.03 KB
/
Copy pathstyle.css
File metadata and controls
55 lines (50 loc) · 1.03 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
body {
font-family: "Ubuntu";
margin: 0;
padding: 0;
background-image: url("gilgeekify-army.jpg");
background-size: cover;
background-position: center;
background-attachment: fixed;
height: 100vh;
display: flex;
font-size: 20px;
font-weight: 900;
overflow: hidden;
flex-direction: column;
justify-content: center;
align-items: center;
align-content: center;
flex-wrap: nowrap;
}
a {
text-decoration: none;
}
#title-top {
text-transform: uppercase;
color: #fff;
background-color: #5582ffb5;
border-radius: 0 100px 0 100px;
width: 800px;
}
#title-bot {
text-transform: uppercase;
color: #fff;
background-color: #ff0000b5;
border-radius: 0 100px 0 100px;
width: 700px;
}
h1 {
color: #222;
background-color: #00ffbbb5;
padding: 20px;
border-radius: 100px 0 100px 0;
width: 600px;
text-align: center;
margin: 0 0 15px 0;
border: 6px solid #222;
transition: 1s;
}
h1:hover {
filter: hue-rotate(300deg);
}