-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (91 loc) · 2.08 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
95
96
97
98
99
100
101
102
103
104
105
106
@import url('https://dsans.davidstudios.uk/css2.css'); /* Font importer */
body {
background-color: #151618;
color: whitesmoke;
font-family: 'DSans Regular', sans-serif; /* Use DSans in the website, obviously */
}
input {
font-family: 'DSans Regular', sans-serif;
border-radius:12px;background-color:#111;color:white
}
samp {
font-family: "Segoe UI", monospace, sans-serif;
background-color: #444;
opacity: .75;
border-radius: 5px;
color: white;
}
.typetester {
font-family: "DSans Regular", sans-serif;
background-color: #222;
border-radius: 10px;
color: white
}
h1 {
margin: 0;
color: whitesmoke;
font-size: 250%;
font-family: 'DSans Bold', sans-serif;
}
.title {
cursor: pointer;
border-radius: 8px;
color: white;
font-size: 6rem;
font-family: 'DSans Regular', sans-serif;
}
span {
transition: ease all 0.35s;
}
span:hover {
transition: ease all 0.35s;
font-size: 6.5rem;
}
.shadow {
background-color: #F5C400;
box-shadow: 0px 0px 8px 2px rgba(255, 255, 255, 0.525);
-webkit-box-shadow: 0px 0px 8px 2px rgba(255, 255, 255, 0.525);
}
button {
color: white;
border-radius: 5px;
font-family: 'DSans Bold', sans-serif;
padding-top: 15px;
padding-bottom: 15px;
padding-right: 70px;
padding-left: 70px;
outline: none;
border: none;
background-color: #F5C400;
transition: ease all 0.35s;
}
button:hover {
color: #F5C400;
cursor: pointer;
transition: ease all 0.5s;
background-color: #151618;
box-shadow: 0px 0px 8px 2px rgba(255, 255, 255, 0.525);
-webkit-box-shadow: 0px 0px 8px 2px rgba(255, 255, 255, 0.525);
}
a {
color: #00ff73;
cursor: pointer;
font-family: 'DSans Bold', sans-serif;
transition: ease all 0.25s;
}
a:hover {
color: #2883eb;
cursor: pointer;
transition: ease all 0.25s;
}
nav {
display: flex;
height: 55px;
width: 100%;
background: #0f0f10;
align-items: center;
justify-content: space-between;
padding: 0 50px 0 100px;
flex-wrap: wrap;
animation: pageShow .7s ease-in-out;
}