-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
137 lines (115 loc) · 1.83 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: rgb(24, 26, 32);
font-family: sans-serif;
color: #fff;
}
.main__div {
width: 100vw;
height: 100vh;
position: relative;
}
.header {
padding: 5px 10px 5px 5px;
display: flex;
justify-content: space-between;
align-items: center;
}
.header h2 {
color: rgb(240, 185, 11);
text-transform: uppercase;
}
.right-items {
display: flex;
font-size: 10px;
cursor: pointer;
}
.right-items > p:hover {
color: rgb(240,185,11);
}
.container {
max-width: 80%;
margin: 4rem auto;
}
.form__area h3 {
font-size: 30px;
}
.tabs button {
background: transparent;
color: white;
padding: 10px;
margin-top: 15px;
font-weight: 600;
cursor: pointer;
border: none;
color: gray;
}
.tabs .active {
background: rgb(43, 49, 57);
color: white;
}
form {
display: flex;
flex-direction: column;
margin-top: 15px;
width: 37vw;
}
.form-group {
display: flex;
flex-direction: column;
margin-bottom: 10px;
}
.form-group label {
font-size: 10px;
margin-bottom: 3px;
}
.form-group input[type="text"] {
padding: 10px 5px 10px 5px;
outline: none;
background: transparent;
color: white;
border:1px solid rgb(43, 49, 57);
border-radius: 5px;
}
.form-group input:focus {
border-color: rgb(240, 185, 11);
}
.form-group input:hover {
border-color: rgb(240, 185, 11);
}
.checkbox-area {
color: gray;
font-size: 10px;
margin-bottom: 5px;
}
.checkbox-area input[type="checkbox"] {
background: red;
}
.btn-submit {
padding: 10px 5px 10px 5px;
cursor: pointer;
background: rgb(240, 185, 11);
border:none;
border-radius: 5px;
font-weight: 600;
margin-top: 10px;
}
.text-muted {
font-size: 10px;
color: gray;
}
.highlight {
color: rgb(240, 185, 11);
font-weight: bold;
}
footer {
display: flex;
justify-content: center;
margin-top: 10rem;
font-size: 9px;
color: gray;
}