Skip to content

Commit 71e7566

Browse files
authored
Merge pull request #1 from lucyliulee/lucyliulee-homepage
Add files via upload
2 parents 3ca76d2 + 4308a2a commit 71e7566

File tree

3 files changed

+72
-0
lines changed

3 files changed

+72
-0
lines changed

App.css

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
.App {
2+
text-align: center;
3+
}
4+
5+
.App-logo {
6+
animation: App-logo-spin infinite 2s linear;
7+
height: 40vmin;
8+
}
9+
10+
.App-header {
11+
background-color: white; /*#282c34*/
12+
min-height: 100vh;
13+
display: flex;
14+
flex-direction: column;
15+
align-items: center;
16+
text-align: center;
17+
justify-content: center;
18+
font-size: calc(10px + 2vmin);
19+
color: #282c34;
20+
}
21+
22+
.App-link {
23+
color: #61dafb;
24+
}
25+
26+
.button {
27+
background-color: transparent; /* Green */
28+
border: 3px #282c34;
29+
color: #282c34;
30+
text-align: center;
31+
font-family: "Ubuntu" serif;
32+
display: inline-block;
33+
font-size: 16px;
34+
border-radius: 8px;
35+
height: 25px;
36+
width: 80px;
37+
transition: all 0.8s;
38+
39+
}
40+
41+
.button:hover {
42+
background-color: #282c34;
43+
color: white;
44+
}
45+

App.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import React, { Component } from 'react';
2+
import { Link } from 'react-router';
3+
import logo from './logo.svg';
4+
import './App.css';
5+
6+
class App extends Component {
7+
render() {
8+
return (
9+
<div className="App">
10+
<header className="App-header">
11+
<img src={logo} className="App-logo" alt="logo" />
12+
<p>
13+
Welcome to <code> Meet Your Professor </code>
14+
</p>
15+
<button className = "button" id="login"> <code> Login </code> </button>
16+
</header>
17+
</div>
18+
);
19+
}
20+
}
21+
22+
export default App;
23+
24+
25+
{/*<a className="App-link" href="https://meetyourprofessor.berkeley.edu" target="_blank" rel="noopener noreferrer">
26+
Learn React </a> */}

logomeet.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)