-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
79 lines (71 loc) · 1.2 KB
/
styles.css
File metadata and controls
79 lines (71 loc) · 1.2 KB
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
@import url("https://fonts.googleapis.com/css2?family=Robot+Mono&display=swap");
html,
body {
background-color: #2e3440;
font-family: "Roboto Mono", Monaco, Consolas, "Ubuntu Mono", monospace;
margin: 0;
padding: 0;
}
body::-webkit-scrollbar {
display: none;
}
a,
a:visited {
text-decoration: none;
color: #88c0d0;
}
.button,
button {
background-color: #5e81ac;
color: #d8dee9;
font: inherit;
cursor: pointer;
border: none;
border-radius: 12px;
padding: 10px 20px;
text-decoration: none;
font-size: 1.05em;
}
main {
padding: 3em;
text-align: center;
}
.title {
font-size: 3em;
margin-top: 0;
}
.description {
color: #eceff4;
font-size: 1.3rem;
padding: 0 1em 1em;
}
.footer {
position: inherit;
display: flex;
flex-direction: row;
justify-content: center;
bottom: 0;
color: #e5e9f0;
padding: 2rem 1rem;
}
.images{
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.footerLinks{
padding: 1rem;
color: #2e3440
}
@media only screen and (min-width:200px) and (max-width:350px){
.button,
button {
font-size: 0.8em;
}
.footer{
display: inline-block;
text-align: center;
}
}