-
Notifications
You must be signed in to change notification settings - Fork 0
/
daniel-styles.css
181 lines (158 loc) · 3.32 KB
/
daniel-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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/**The css file used for styling the personal library page. Follows Yousaf's template style
- Daniel J**/
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
body {
background: #fdcc04;
}
nav {
height: 80px;
background: #fdcc04;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0rem calc((100vw - 1300px) / 2);
text-align: center;
font-weight: bold;
}
.logo {
color: #000;
font-size: 4rem;
font-style: italic;
font-weight: bold;
text-underline-position: auto;
padding: 0 2rem;
text-align: center;
align-items: center;
}
.header {
color: #000;
background-color: #fdcc04;
font-size: 4rem;
font-style: italic;
font-weight: bold;
text-underline-position: auto;
padding: 1rem 0rem 0rem;
text-align: center;
}
nav a {
padding: 1rem 3rem;
font-size: 1rem;
border: none;
color: #fdcc04;
background: #000;
cursor: pointer;
border-radius: 25px;
text-align: center;
align-items: center;
font-weight: bold;
}
nav a:hover {
background: #fff;
color: #000;
}
.hero {
background: #fdcc04;
height: 27.4rem
}
.hero-container {
display: grid;
grid-template-columns: 1fr 1fr;
height: 60vh;
padding: 2rem calc((100vw - 1300px) / 2) 4rem;
}
.column-left {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
color: #000;
padding: 0rem 2rem;
text-align: center;
align-items: center;
font-weight: bold;
}
.column-left h1 {
margin-top: 1rem;
margin-bottom: 1rem;
font-size: 2.5rem;
text-align: center;
align-items: center;
font-weight: bold;
}
.hero-center {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
color: #000;
padding: 7rem 2rem;
text-align: center;
align-items: center;
font-weight: bold;
}
button {
padding: 1rem 3rem;
font-size: 1rem;
border: none;
color: #fdcc04;
background: #000;
cursor: pointer;
border-radius: 25px;
text-align: center;
align-items: center;
display: flex;
justify-content: center;
margin-left: auto;
margin-right: auto;
margin-bottom: 1rem;
margin-top: auto;
font-weight: bold;
}
button:hover {
background: #fff;
color: #000;
}
.column-right {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 0rem 2rem;
text-align: center;
}
.column-right h1 {
display: flex;
flex-direction: column;
margin-top: 1rem;
margin-bottom: 1rem;
font-size: 2.5rem;
text-align: center;
align-items: center;
font-weight: bold;
}
.hero-image {
width: 100%;
height: 100%;
}
@media screen and (max-width: 768px) {
.hero-container {
grid-template-columns: 1fr;
}
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}