1
+ /*
2
+ C19AB7 - Lilac for writing and buttons
3
+ 0B7189 - Creulean TBD
4
+ 85C7F2 - Light Sky blue TBD
5
+ 170A1C - Dark Purple for background
6
+ 2F2963 - Space Cadet not sure yet probably for highlights
7
+ */
8
+
9
+ html {
10
+ font-family : ' Source Code Pro' , monospace ;
11
+ font-optical-sizing : auto ;
12
+ font-weight : 300 ;
13
+ font-style : normal ;
14
+ color : #c19ab7 ;
15
+ }
16
+
17
+ body {
18
+ height : 100vh ;
19
+ background-color : #170a1c ;
20
+ }
21
+
22
+ button {
23
+ font-family : ' Source Code Pro' , monospace ;
24
+ font-optical-sizing : auto ;
25
+ font-weight : 300 ;
26
+ font-style : normal ;
27
+ background-color : white ;
28
+ color : #c19ab7 ;
29
+ border : none ;
30
+ transition : background-color 0.3s ease , color 0.3s ease ,
31
+ border-color 0.3s ease ;
32
+ cursor : pointer ;
33
+ }
34
+ .inputBox {
35
+ background-color : #2f2963 ; /* Space Cadet */
36
+ color : #c19ab7 ; /* Lilac */
37
+ border : 2px solid #c19ab7 ;
38
+ padding : 0.75rem ;
39
+ font-family : ' Source Code Pro' , monospace ;
40
+ font-size : 1rem ;
41
+ font-weight : 300 ;
42
+ border-radius : 8px ;
43
+ outline : none ;
44
+ width : 100% ;
45
+ max-width : 400px ;
46
+ transition : border-color 0.3s ease , background-color 0.3s ease ;
47
+ }
48
+
49
+ .inputBox ::placeholder {
50
+ color : #85c7f2 ; /* Light Sky Blue */
51
+ opacity : 0.7 ;
52
+ }
53
+
54
+ .inputBox :focus {
55
+ border-color : #85c7f2 ; /* Light Sky Blue */
56
+ background-color : #0b7189 ; /* Cerulean */
57
+ color : white ;
58
+ }
1
59
2
60
.cardBox {
3
61
display : flex ;
23
81
font-weight : 700 ;
24
82
line-height : 15.4px ;
25
83
}
84
+ .submit {
85
+ background-color : white ; /* Lilac */
86
+ color : #c19ab7 ; /* Dark Purple */
87
+ border : 2px solid #c19ab7 ;
88
+ padding : 0.75rem 1.5rem ;
89
+ font-family : ' Source Code Pro' , monospace ;
90
+ font-size : 1rem ;
91
+ font-weight : 300 ;
92
+ border-radius : 8px ;
93
+ margin-left : 0.5rem ;
94
+ }
95
+
96
+ button :hover {
97
+ background-color : #85c7f2 ; /* Light Sky Blue */
98
+ color : #170a1c ;
99
+ border-color : #85c7f2 ;
100
+ }
101
+
102
+ button :active {
103
+ background-color : #0b7189 ; /* Cerulean */
104
+ color : white ;
105
+ border-color : #0b7189 ;
106
+ }
107
+
108
+ .input-container {
109
+ display : flex ;
110
+ align-items : center ;
111
+ gap : 0.5rem ;
112
+ }
26
113
p {
27
114
font-family : Futura, ' Trebuchet MS' , Arial , sans-serif ;
28
115
font-size : 14px ;
@@ -39,11 +126,3 @@ blockquote {
39
126
font-weight : 400 ;
40
127
line-height : 30px ;
41
128
}
42
- pre {
43
- font-family : Futura, ' Trebuchet MS' , Arial , sans-serif ;
44
- font-size : 13px ;
45
- font-style : normal ;
46
- font-variant : normal ;
47
- font-weight : 400 ;
48
- line-height : 18.5714px ;
49
- }
0 commit comments