-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgtheme.css
110 lines (92 loc) · 1.67 KB
/
gtheme.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
103
104
105
106
107
108
109
110
@font-face {
font-family: "FiraSans";
src: url("https://free.bboxtype.com/embedfonts/?family=FiraSans:500") format("woff");
}
p {
font-size: 1.1em;
font-family: 'Fira Sans';
}
h1 {
font-family: Helvetica, sans-serif;
text-align: center;
}
html {
padding: 25px;
background-color: whitesmoke;
}
#siteLogo{
background: url(./GImages/GitFitLogo.png) center;
background-size: cover;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
padding: 20px;
color: #333333;
}
footer {
background-color: #FF9100;
}
footer > p {
color: whitesmoke;
text-align: center;
}
.button {
display: grid;
grid-template-columns: repeat(autofit, minmax(150px, 1fr));
align-items: center;
}
.button > button {
text-align: center;
color: #FF9100;
background-color: whitesmoke;
font-family: Helvetica, sans-serif;
font-size: 1.2em;
padding: 15px;
border: 2px solid #FF9100;
border-radius: 3px;
}
.button > button:hover {
text-align: center;
color: whitesmoke;
background-color: #FF9100;
cursor: pointer;
}
.hero {
background: url('./GIamges/GitFitLogo.png');
background-size: cover;
height: 1em;
width: 1em;
}
img {
width: 100%;
height: auto;
}
#buttonHousing {
display: grid;
grid-template-columns: repeat(autofit, minmax(100px, 1fr));
place-items: center;
}
code {
font-size: 1.2em;
padding: .1rem .3rem .2rem;
background: #CFCFCF;
}
h3 {
font-family: Helvetica, sans-serif;
text-align: left;
}
a {
font-family: 'Fira Sans';
font-style: italic;
color: #00B386;
}
a:hover {
color: #FF9100;
}
ul {
list-style: circle;
}
li {
font-family: 'Fira Sans';
color: #333333;
font-size: 1.1em;
}