-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
92 lines (78 loc) · 1.73 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
80
81
82
83
84
85
86
87
88
89
90
91
92
/* Notes on colors http://peach-puff.colorcode.is/combinations*/
body {
font-family: monospace;
}
.wrapper {
display: grid;
grid-template-columns: 30% 30% 30%;
grid-template-rows: 90% 90% 90%;
max-width: 720px;
margin-left: auto;
margin-right: auto;
}
.box {
border: 2px solid orange;
border-radius: 5px;
background-color: peachpuff;
width: 85%;
height: 85%;
}
.box-content {
padding: 15%;
}
a {
text-decoration: none;
}
.button {
background-color: #43445a;
border: none;
color: white;
margin: 5px;
text-align: center;
text-decoration: none;
display: inline-block;
border-radius: 5px;
transition-duration: .4s;
padding: 4px;
}
.button:hover {
background-color: #bf9990;
color: white;
}
.bottom-text {
}
.nav {
background: white;
height: 60px; /* set same as height & line-height below */
margin-left: auto;
margin-right: auto;
max-width: 720px;
padding-bottom: 40px;
}
.nav li {
display: inline-block;
list-style: none;
height: 60px; /* should be the same as line-height */
line-height: 60px; /* should be the same as height */
padding: 0 40px; /* "0" sets top and bottom padding to none */
}
.nav li:hover {
background: #B9FFDA;
transition: background .3s;
}
/*This first section is a simple "reset". It allows the navbar to push up against the top of the browser window with no white space around it. This code also sets the default font for your whole page. Put it at the very top of your css page. */
html, body, div, p, ul, li {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
/*font-family: 'Roboto', sans-serif;*/
font-weight: 100;
font-family: monospace;
}
.nav-link {
color: black;
text-decoration: none;
}