-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstylesheet.css
More file actions
108 lines (93 loc) · 1.64 KB
/
stylesheet.css
File metadata and controls
108 lines (93 loc) · 1.64 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
* {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: rgb(255, 255, 255);
margin: 0;
}
body {
background: linear-gradient(to top right, rgb(0, 3, 177), rgb(241, 91, 21));
min-height: 100vh;
}
container {
display: flex;
max-width: 100vw;
}
.note-div {
opacity:1;
margin-bottom: 50px;
max-width: 35vw;
transition: all 0.7s ease-out;
cursor: pointer;
}
.note-div.hide {
opacity:0;
}
#heading {
margin: 50px 50px 0px 50px;
font-size: 50px;
}
#left-side {
width: 50vw;
padding: 50px;
}
#create-container {
min-width: 40vw;
min-height: 50vh;
}
#text-input {
box-shadow: black 7px 7px 40px;
width: 97%;
height: 40vh;
color: black;
border: 1px solid rgb(57, 18, 129);
border-radius: 5px;
padding: 10px;
font-size: 20px;
resize: none;
outline: none;
}
#create {
margin-top: 5px;
display: block;
color: black;
background: white;
border: 0px;
float: right;
font-size: 18px;
border-radius: 3px;
cursor: pointer;
}
#create:active {
top: 5px;
font-size: 17px;
box-shadow: 0px 0px 10px rgb(255, 115, 0);
}
#clear {
max-height: 10vh;
margin: 15px;
display: block;
float: right;
color: black;
background-color: #000;
background-color: rgba(255,255,255,0.5);
border: 0px;
font-size: 18px;
border-radius: 3px;
cursor: pointer;
}
#clear:active {
top: 5px;
font-size: 17px;
box-shadow: 0px 0px 10px rgb(255, 115, 0);
}
#right-side {
padding: 50px;
width: 50vw;
}
@media screen and (max-width: 768px) {
container {
flex-direction: column;
}
#left-side, #right-side {
width: 77vw;
}
}