-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle_2.css
More file actions
83 lines (81 loc) · 1.62 KB
/
Copy pathstyle_2.css
File metadata and controls
83 lines (81 loc) · 1.62 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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body{
width:50%;
margin:auto;
font-family: "Montserrat", sans-serif;
background-color:#121212;
color:#cccccc;
}
h1{
font-weight: 300;
margin-bottom: 40px;
}
label[for="note-title"]{
text-transform: uppercase;
font-size:15px;
height: 25px;
margin-bottom: 40px;
}
form input{
width:100%;
height:30px;
border-top: 0;
border-right: 0;
border-left: 0;
background-color: #121212;
color:#e0e0e0;
border-bottom: 1.5px solid #9c9c9c;
outline: none;
font-family: "Montserrat", sans-serif;
font-size: large;
margin-bottom: 30px;
}
form input:focus{
border-bottom: 1.5px solid #d3d3d3;
transition:.5s;
}
#note-content{
display: block;
}
textarea{
margin-top: 30px;
width:100%;
height:300px;
border-top: 0;
border-right: 0;
border-left: 0;
background-color: #121212;
color:#e0e0e0;
border-bottom: 1.5px solid #9c9c9c;
outline: none;
font-family: "Montserrat", sans-serif;
font-size: large;
}
.btn{
width: 49%;
height:45px;
border-radius:5px;
}
.btn-container{
margin-top: 50px;
display: flex;
justify-content: space-evenly;
margin-bottom: 0;
}
#btn_1{
border:1.5px solid #e74444;
background-color: #121212;
font-size:1.2em;
color:#e74444;
}
#btn_1:hover{
background-color: #e74444;
color: #cfcfcf;
transition:all .5s ;
transition-timing-function: ease-in-out;
}
#btn_2{
border: none;
background-color: #d8d8d8;
font-size:1.2em;
}