-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (90 loc) · 1.45 KB
/
style.css
File metadata and controls
90 lines (90 loc) · 1.45 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
@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/css/all.min.css";
*{
box-sizing:border-box;
}
body{
background-color:#15132d;
height:100vh;
display:flex;
justify-content:center;
align-items:center;
}
.container{
background-color:#1b1839;
width:1000px;
max-width:100%;
padding:50px 100px;
position:relative;
border-radius:5px;
}
.form-outer{
color:white;
}
.form{
color:#c0c0c9;
margin:20px 0px;
}
.form-group{
display:flex;
margin:20px 0px;
}
.inp-sec{
margin-right:20px;
}
input[type="checkbox"]{
border:none;
padding:5px;
height:20px;
width:20px;
}
.inp-desc label{
line-height:10px;;
}
.inp-desc p{
line-height: 4px;
font-size: 13px;
color: rgba(255,255,255, 0.3);
}
.cross-btn{
position:absolute;
top:0;
right:0;
background:rgba(255, 255, 255, 0.12941);
height:30px;
width:30px;
border-radius:5px;
cursor:pointer;
display:flex;
justify-content:center;
align-items:center;
}
.cross-btn i{
font-size:30px;
color:white;
}
.form-textarea{
margin:10px 0px;
}
.form-textarea textarea{
border:none;
outline:none;
background:#15132d;
border:1px solid white;
border-radius:5px;
box-shadow:0px 5px 10px rgba(0, 0, 0, 0.5);
padding:10px;
color:white;
font-size:14px;
font-family: monospace;
line-height: 30px;
}
.form-btn{
border:none;
outline:none;
margin:10px 0px;
padding:1rem 2rem;
background:#fd984c;
color:black;
border-radius:5px;
cursor:pointer;
}