forked from buildspace/buildspace-os
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
132 lines (127 loc) · 2.26 KB
/
style.css
File metadata and controls
132 lines (127 loc) · 2.26 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
119
120
121
122
123
124
125
126
127
128
129
130
131
* {
font-family: "Manrope", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
color: white;
}
body {
display: flex;
width: 25rem;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #1a202c;
}
.container {
display: flex;
flex-direction: column;
position: relative;
width: 100%;
margin: 2rem auto;
padding: 1rem;
background-color: #000000;
}
.text-center {
text-align: center;
}
.mb-6 {
margin-bottom: 1rem;
}
.text-2xl {
font-size: 1.5rem;
font-weight: 700;
color: #fff;
}
.form-group {
margin-bottom: 0.5rem;
}
.label {
display: block;
margin-bottom: 0.5rem;
font-size: small;
color: #ffffff;
}
input {
width: 90%;
padding: 0.7rem 1rem;
background-color: #000000;
color: #fff;
border: 1px solid rgb(48, 48, 48);
outline: none;
}
input:focus {
border-color: #c3c3c3;
}
textarea {
width: 90%;
height: 100px;
padding: 0.7rem 1rem;
background-color: #000000;
color: #fff;
border: 1px solid rgb(48, 48, 48);
outline: none;
}
textarea:focus {
border-color: #c3c3c3;
}
.btn {
display: inline-block;
padding: 0.5rem 1rem;
background-color: #ffffff;
color: #000000;
text-align: center;
border: none;
cursor: pointer;
text-decoration: none;
transition: background-color 0.3s ease-in-out;
}
.btn:hover {
background-color: #c1c1c1;
}
.btn-secondary {
display: inline-block;
padding: 0.5rem 1rem;
background-color: black;
color: white;
text-align: center;
border: none;
cursor: pointer;
text-decoration: none;
transition: background-color 0.3s ease-in-out;
border: 1px solid #3b3b3b;
}
.btn-secondary:hover {
background-color: #333;
}
a {
font-size: small;
text-decoration: none;
color: #ffffff;
}
a:hover {
text-decoration: underline;
}
input[type="checkbox"] {
appearance: none;
-webkit-appearance: none;
display: flex;
align-content: center;
justify-content: center;
padding: 0.1rem;
border: 1px solid rgb(255, 255, 255);
}
input[type="checkbox"]::before {
content: "";
width: 0.5rem;
height: 0.5rem;
transform: scale(0);
background-color: rgb(255, 255, 255);
}
input[type="checkbox"]:checked::before {
transform: scale(1);
}
input[type="checkbox"]:hover {
color: rgb(255, 255, 255);
}