-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (70 loc) · 1.1 KB
/
style.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
* {
padding: 0%;
margin: 0%;
}
body {
background-color: #c68c53a8;
font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
font-size: 24px;
}
.main-container {
width: 95%;
margin: auto;
}
.container1 {
margin: 0 5%;
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: row;
margin-top: 30px;
margin-bottom: 50px;
}
.container1 h1 {
color: rgba(0, 0, 0, 0.8);
}
.container2 {
display: flex;
justify-content: flex-start;
flex-wrap: wrap;
padding: 5% 0;
margin: auto;
width: 80%;
}
.container3 {
display: none;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
textarea {
box-shadow: 10px 10px 24px 0px rgba(0, 0, 0, 0.75);
outline: none;
border: none;
width: 275px;
height: 275px;
padding: 40px 25px 25px 25px;
resize: none;
}
svg {
color: gray;
}
#check-icon {
position: absolute;
right: 17%;
top: 4%;
cursor: pointer;
}
#check-icon:hover {
color: green;
}
#x-icon {
position: absolute;
right: 5%;
top: 4%;
cursor: pointer;
}
#x-icon:hover {
color: red;
}