File tree Expand file tree Collapse file tree 3 files changed +72
-0
lines changed
Expand file tree Collapse file tree 3 files changed +72
-0
lines changed Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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> */ }
You can’t perform that action at this time.
0 commit comments