-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
109 lines (94 loc) · 1.78 KB
/
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
/* Global Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html {
height: 100%;
display: flex;
flex-direction: column;
scroll-behavior: smooth;
background-color: #fff;
}
body {
transition: all .3s ease;
}
button {
cursor: pointer;
}
input,
button,
textarea {
outline: none;
border: none;
background-color: inherit;
}
/* Material Symbols */
.material-symbols-outlined {
font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
transition: all 0.3s ease;
color: orange;
}
.material-symbols-outlined:hover {
transform: scale(1.1);
}
.material-symbols-outlined:disabled {
cursor: not-allowed;
}
/* Title Section */
#title-contents {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px;
height: 40px;
box-shadow: 0 1px 8px rgba(0, 0, 0, .08);
z-index: 1;
}
#title-contents span {
display: flex;
}
#title-contents span button {
margin-left: 40px;
}
#title {
width: 100%;
font-size: 20px;
color: black;
transition: font-size 0.3s ease;
caret-color: orange;
letter-spacing: 0.5px;
font-weight: 400;
}
#title:focus {
font-size: 21px;
}
#content, #editor {
flex: 1;
padding: 20px;
overflow-y: auto;
word-spacing: normal;
letter-spacing: 0.7px;
line-height: 1.6;
resize: vertical;
white-space: pre-wrap;
word-wrap: break-word;
overflow-wrap: break-word;
}
#editor {
display: none;
caret-color: orange;
background-color: #f9f9f9;
}
#download {
color: white;
position: fixed;
bottom: 20px;
right: 20px;
display: inline;
padding: 8px;
border-radius: 50px;
background-color: orange;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}