-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnote.css
More file actions
118 lines (113 loc) · 2.07 KB
/
Copy pathnote.css
File metadata and controls
118 lines (113 loc) · 2.07 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
body{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #121212;
color: #cccccc;
width:65%;
margin:auto;
}
.central-div{
width:53%;
margin:auto;
}
.main-title{
text-transform: capitalize;
font-size:2em;
font-weight:lighter ;
margin-top: 5px;
margin-bottom: 30px;
}
.title-div{
text-transform: uppercase;
color:#adadad;
}
div form input{
margin-top: 15px;
width:100%;
height:40px;
font-size: 1.1em;
background-color: #121212;
border-top: none;
border-left: none;
border-right: none;
border-bottom: 1.5px solid #444444;
outline: none;
color:#ccc;
}
div form input:focus{
border-bottom: 1.8px solid #8a8a8a;
transition: .2s;
}
.content-div{
text-transform: uppercase;
color:#adadad;
margin-top: 25px;
margin-bottom: 24px;
}
textarea{
width:100%;
height:280px;
background-color: #121212;
border-top: none;
border-left: none;
border-right: none;
border-bottom: 1.5px solid #8a8a8a;
outline: none;
color:#ccc;
font-size: 18px;
font-weight: lighter;
}
.link-container{
display: flex;
flex-direction: row;
justify-content: stretch;
justify-content: space-between;
margin-top: 20px;
height: 25px;
}
.btn{
width:45%;
height:20px;
text-decoration: none;
font-size: 1.1em;
padding: 15px;
text-transform: capitalize;
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
}
#btn-1{
color: #ff5252;
border: 1px solid #ff5252;
border-radius:8px;
padding: 15px;
}
#btn-1:hover{
color:#cccccc;
background-color: #ff5252;
transition: .3s;
}
#btn-2{
background-color: #cccccc;
color:#121212;
border-radius:8px;
padding: 15px;
}
@media (max-width:760px){
.central-div{
width:90%;
padding: 20px;
}
.btn{
margin:8px;
}
}
@media (min-width:760px){
.central-div{
width:80%;
padding: 20px;
}
.btn{
margin:8px;
}
}