-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (60 loc) · 1 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
@font-face {
font-family: 'League';
src: url("League.otf") format("opentype");
font-style: normal;
}
*{
box-sizing:border-box;
}
html,body{
font-family:League;
width:100%;
height:75%;
}
body{
letter-spacing: 6px;
text-transform: uppercase;
font-family: "League";
margin:0;
overflow:hidden;
color:#302C29;
background-color:
#E3DACB;
}
h1{
text-transform: uppercase;
margin-top:0;
color: blue;
font-family: 'Tolstoika', sans-serif;
font-size: 72px;
}
button{
font-family: 'Rubik Mono One', sans-serif;
border:2px solid #F1EDC9;
background:transparent;
width:250px;
font-size:1.2em;
padding : 10px 0;
border-radius:5px;
display:block;
cursor:pointer;
margin:1em auto;
}
a {
font-family: monospace;
font-size: 50px;
color: #E45D2B;
text-decoration:none;
}
h2 {
font-size: 50px;
color: #E45D2B;
}
article{
width:80%;
margin:auto;
font-size:5em;
top:50%;
position:relative;
transform:translateY(-50%);
}