Skip to content
This repository was archived by the owner on Oct 16, 2024. It is now read-only.

Commit 1342ebc

Browse files
[MAIN] Simplify Styling + Reorganize (#5)
* initial commit * remove extra images * PR changes * change title size for 01 example * tidy css Co-authored-by: apobletts <[email protected]>
1 parent a0528df commit 1342ebc

31 files changed

+3764
-152
lines changed

.DS_Store

6 KB
Binary file not shown.
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
node_modules/
22
dev.env
3+
*.DS_STORE
34
.env
4-
*.DS_STORE
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

01-Login/views/assets/index.css

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
.main-container {
2+
background: white;
3+
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
4+
border-radius: 20px;
5+
width: 310px;
6+
min-height: 310px;
7+
margin: 30px auto;
8+
}
9+
.footer {
10+
text-align: center;
11+
font-size: 18px;
12+
}
13+
14+
.dashboard{
15+
padding: 30px 30px 20px;
16+
}
17+
.title {
18+
font-size: 32px;
19+
font-weight: 700;
20+
margin-bottom: 30px;
21+
}
22+
.message {
23+
overflow-wrap: anywhere;
24+
}
25+
.link {
26+
color: black;
27+
text-decoration-color: black;
28+
}
29+
30+
html,
31+
body {
32+
padding: 0;
33+
margin: 0;
34+
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
35+
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
36+
}
37+
38+
a {
39+
color: inherit;
40+
text-decoration: none;
41+
}
42+
43+
* {
44+
box-sizing: border-box;
45+
}

01-Login/views/assets/style.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
.main-header{
2+
padding: 20px 30px;
3+
display: flex;
4+
align-items: center;
5+
background-color: #27417E;
6+
color: white;
7+
}
8+
.header-text {
9+
font-size: 32px;
10+
margin-left: 10px;
11+
}
12+
13+
.passage-logo {
14+
background-image: url('https://storage.googleapis.com/passage-docs/passage-logo.svg');
15+
background-repeat: no-repeat;
16+
width: 60px;
17+
height: 60px;
18+
cursor: pointer;
19+
}
20+
.spacer {
21+
flex-grow: 1;
22+
}

0 commit comments

Comments
 (0)