-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
48 lines (40 loc) · 1007 Bytes
/
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
/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
HTML content. To learn how to do something, just try searching Google for questions like
"how to change link color." */
body {
font-family: 'determination_sans_webregular';
color:white;
background-image: url(assets/waterbg.png);
background-repeat: no-repeat;
background-color: black;
background-attachment: fixed;
background-size: cover;
}
@font-face {
font-family: 'determination_sans_webregular';
src: url('fonts/determination-webfont.woff');
font-weight: normal;
font-style: normal;
}
h1 {
font-size: 50px;
text-align: center
}
h2 {
font-size: 30px;
text-align: center
}
p {
font-size: 25px;
text-align: left
}
.DRBorder {
width: 50%;
margin: 0 auto;
color: white;
padding: 1px 20px;
overflow: auto;
border: 26px solid transparent;
border-image: url("assets/deltarunetext.gif");
border-image-slice: 27.3% fill;
}