-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
executable file
·79 lines (65 loc) · 1.34 KB
/
styles.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
@import url('https://fonts.googleapis.com/css?family=Ubuntu+Condensed|Ubuntu+Mono');
html, body {
font-family: 'Ubuntu Mono', monospace;
margin: 0;
padding: 0;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Ubuntu Condensed', sans-serif;
}
a {
font-family: 'Ubuntu Mono', monospace;
border-bottom-width: 2px;
border-bottom-style: solid;
border-bottom-color: #fff;
color: inherit
}
a:hover {
border-bottom-width: 4px;
}
.container {
max-width: 960px;
margin: 0 auto;
}
.header {
background: #E95420;
}
.headerContentContainer {
height: 45vh;
display: flex;
justify-content: flex-start;
align-items: center;
align-content: center
}
@media screen and (max-width: 768px) {
.headerContentContainer {
height: fit-content;
padding: 0 20px 50px 20px;
}
}
.headerContentContainer h1 {
color: #fff;
font-size: 4em;
}
.headerContentContainer p {
color: #fff;
font-size: 1.5em;
margin: 10px 0 0 0;
}
.headerContentContainer p a {
border-bottom-color: #e6e6e6;
}
.buttonsContainer {
background: #F6F6F5;
}
.buttonsContentContainer {
padding: 100px 0 100px 0;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.buttonsContentContainer button {
flex-grow: 1;
width: calc(100% * (1/3) - 10px - 1px);
margin: 20px;
}