-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcss.css
59 lines (56 loc) · 1.41 KB
/
css.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
@font-face{
font-family: 'JetBrains Mono';
src: url('https://raw.githubusercontent.com/JetBrains/JetBrainsMono/master/web/eot/JetBrainsMono-Regular.eot') format('embedded-opentype'),
url('https://raw.githubusercontent.com/JetBrains/JetBrainsMono/master/web/woff2/JetBrainsMono-Regular.woff2') format('woff2'),
url('https://raw.githubusercontent.com/JetBrains/JetBrainsMono/master/web/woff/JetBrainsMono-Regular.woff') format('woff'),
url('https://raw.githubusercontent.com/JetBrains/JetBrainsMono/master/ttf/JetBrainsMono-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
html{
height: 100vh;
}
body{
font-family: "JetBrains Mono";
margin: 0;
padding: 0;
background: linear-gradient(#38ce7e 0%, #4a5ddf 100%);
}
.content{
width: 50%;
margin: 0 auto;
color: white;
text-align: center;
}
.title{
display: block;
margin-top: 125px;
text-shadow: 3px 3px 2px rgba(150, 150, 150, 1);
}
.screen{
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
border-radius: 5px;
margin: 25px 0;
max-width: 100%;
}
.btn{
text-decoration: none;
color: rgb(0, 0, 0);
font-size: 12px;
margin: 0 10px;
}
.btn img{
display: block;
width: 100px;
margin: 0 auto;
max-width: 100%;
}
.links{
display: flex;
justify-content: center;
}
@media(max-width: 430px){
.title{
font-size: 25px;
}
}