-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
120 lines (103 loc) · 1.83 KB
/
main.css
File metadata and controls
120 lines (103 loc) · 1.83 KB
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
110
111
112
113
114
115
116
117
118
119
120
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body {
background-color: #e6e6e6;
}
.top-message{
background-color: #2a579a;
height: 30px;
font-size: 14px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 10px;
color: #fff;
}
.right-side-icon,
.left-side-icon{
display: flex;
align-items: center;
gap: 10px;
}
header {
width: 100%;
height: 120px;
padding: 20px 30px;
display: flex;
align-items: center;
justify-content: center;
gap: 40px;
background-color: #f1f1f1;
}
.formatting-tab,
.para-tab {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
padding: 10px 20px;
}
.formatting-tab h4,
.para-tab h4
{
margin-bottom: 5px;
font-size: 1.1rem;
}
.input {
margin-bottom: 10px;
width: 150px;
}
.formatting-tab #fontFamily {
width: 66%;
padding: 3px 4px;
border: 0.5px solid #aaa;
}
.formatting-tab select {
padding: 3px 4px;
width: 30%;
border: 0.5px solid #aaa;
}
.formatting-item {
display: flex;
align-items: center;
justify-content: space-around;
margin-top: 8px;
}
.para-tab h4{
margin-bottom: 10px;
}
.align-icon{
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}
.align-icon i {
font-size: 1.2rem;
cursor: pointer;
}
.container {
width: 600px;
height: 100vh;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
}
.container textarea{
resize: none;
border: none;
width: 500px;
height: 500px;
font-size: 16px;
background-color: #fff;
box-shadow: 1px 1px 1px #999;
padding: 50px 40px;
}
.container textarea:focus {
outline: none;
}