-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (94 loc) · 1.54 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Mulish", sans-serif;
color: white;
font-size: 20px;
}
html {
height: 100vh;
width: 100vw;
}
body {
background-color: #140d63;
height: 100vh;
width: 100vw;
overflow: hidden;
}
.header {
margin: 50px 60px;
text-decoration: none;
}
.header h1 {
font-size: 36px;
font-family: "Rowdies";
color: #ff9800;
display: inline-block;
text-decoration: none;
}
.header span {
color: #ff9800;
font-size: 24px;
font-family: "Mulish", sans-serif;
}
.footer {
margin-top: 20px;
color: #ff9800;
font-size: 22px;
font-family: "ubuntu";
border-bottom: 0.5px solid #ff9800;
padding-bottom: 40px;
}
a:link {
color: #ff9800;
}
a:visited {
color: #ff9800;
}
.content {
word-wrap: break-word;
width: 55%;
margin: 200px auto;
text-align: center;
}
.two {
word-wrap: break-word;
margin-top: 15px;
}
.three {
margin-top: 15px;
}
.footer1 {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: absolute;
width: 100%;
height: 25vh;
left: 0;
bottom: 0;
background-color: rgb(1, 20, 54);
}
.fcontainer {
width: 80%;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.fright {
display: flex;
flex-direction: column;
}
.icons {
display: flex;
flex-direction: row;
}
.fitem {
padding: 10px;
}
.header a {
text-decoration: none;
}