-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
102 lines (86 loc) · 1.32 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
:root {
font: 500 18px 'Open Sans', sans-serif;
color: hsl(58, 19%, 31%);
}
html {
box-sizing: border-box;
background: #EDD6C3;
height: 100%;
width: 100%
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
margin: 0 auto;
min-height: 100vh;
min-width: 375px;
width: 100%;
max-width: 700px;
background-color: #FDFAF0;
padding: 20px;
}
@media screen and (min-width: 599px) {
body {
width: 80%;
}
}
header {
text-align: center;
padding: 0px 0px 20px;
}
nav {
display: flex;
align-items: center;
justify-content: center;
}
h1 {
color: #333333;
padding: 0;
margin: 10 0;
}
h2 {
padding: 0;
margin: 0;
font-size: 110%;
}
a {
color: #333333;
}
button {
font-size: .75em;
width: 20%;
margin: 0px 10px;
min-width: 55px;
border-color: #6B624A;
background-color: #EDD6C3;
border-radius: 5px;
cursor: pointer;
padding: 0px;
text-align: center;
}
button.active {
border-color: #EDD6C3;
background-color: #6B624A;
color: #EDD6C3;
cursor: default;
}
.content {
text-align: left;
margin: auto;
width: 90%;
}
.project {
padding: 15px 3% 2px 3%;
margin: 10px 0;
border-radius: 10px;
border: 0px invisible black;
background-color: #EDD6C2;
}
.project-content {
padding: 0 1.5%;
text-align: left;
}
.project-content h2 {
color: #333333;
}