-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.scss
101 lines (100 loc) · 1.6 KB
/
index.scss
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
body {
margin: 0;
background-color: #444444;
}
.header__parent {
background-color: #282828;
margin: 0;
padding: 10px;
}
.header__title {
margin: 0;
}
.header__title a {
text-decoration: none;
color: #ecf319;
padding: 5px 10px;
}
.header__inner {
display: flex;
}
.nav__items {
margin: 0;
height: 100%;
list-style: none;
padding-left: 0;
display: flex;
}
.nav-items__item.post {
background-color: #e3e377;
border-radius: 10px;
}
.nav__items li {
margin: 0 10px;
display: flex;
align-items: center;
}
li.nav-items__item.post a {
color: #414141;
font-weight: bold;
padding: 5px 10px;
}
.nav__items li a {
text-decoration: none;
color: #fcf27f;
}
.auth__parent {
display: flex;
flex-direction: column;
align-items: center;
margin: 30px 0;
}
.auth__parent .header {
color: #eee;
}
button.primary-button {
background-color: #1f6feb;
border: none;
color: #f0f6fc;
padding: 10px 30px;
border-radius: 5px;
font-size: 1em;
margin: 10px;
}
.create__head h2 {
margin: 0;
color: #f0f6fc;
}
.create__head button {
border: none;
background-color: #fcf27f;
padding: 5px 10px;
font-weight: bold;
font-size: 2rem;
border-radius: 10px;
color: #414141;
}
.create__head {
margin: 10px 50px;
display: flex;
align-items: center;
justify-content: space-between;
}
.create__view {
display: flex;
width: 100%;
}
.create__view textarea {
resize: none;
width: 50%;
font-size: 1.5em;
height: 80vh;
overflow-y: scroll;
}
.create__view div {
overflow-wrap: break-word;
width: 50%;
background-color: #c5c5c5;
height: 80vh;
overflow-y: scroll;
}