-
Notifications
You must be signed in to change notification settings - Fork 1
/
make-survey.css
149 lines (132 loc) · 2.67 KB
/
make-survey.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
138
139
140
141
142
143
144
145
146
147
148
149
body {
background-color: #000;
color: #0ff;
/* Light blue font color */
font-family: 'Courier New', monospace;
text-align: center;
margin: 0;
padding: 0;
}
header {
padding: 50px;
}
h1 {
font-size: 3em;
margin: 10px;
max-width: 100%;
}
h2 {
font-size: 1.5em;
max-width: 100%;
}
p {
font-size: 1.2em;
margin: 20px;
max-width: 100%;
}
/* visited link */
a[href]:visited {
color: #00d0ff;
}
/* mouse over link */
a[href]:hover {
color: #00ddff;
}
/* unvisited link */
a[href] {
color: #0ff;
text-decoration: none;
}
input[type="text"] {
padding: 8px;
font-size: 16px;
width: 200px;
max-width: 100%;
border: 1px solid #0ff;
border-radius: 4px;
box-sizing: border-box;
background-color: black;
color: #0ff;
}
/* CSS */
.button-28 {
appearance: none;
background-color: transparent;
border: 1px solid #0ff;
border-radius: 15px;
box-sizing: border-box;
color: #0ff;
cursor: pointer;
display: inline-block;
font-family: Roobert, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 16px;
font-weight: 600;
line-height: normal;
margin: 5px;
min-height: 20px;
min-width: fit-content;
outline: none;
padding: 8px 12px;
text-align: center;
text-decoration: none;
transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
will-change: transform;
}
.button-28:disabled {
pointer-events: none;
}
.button-28:hover {
color: #0ff;
background-color: #1A1A1A;
box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
transform: translateY(-2px);
}
.button-28:active {
box-shadow: none;
transform: translateY(0);
}
input[type="time"] {
padding: 8px;
font-size: 16px;
width: 200px;
max-width: 35%;
border: 1px solid #0ff;
border-radius: 4px;
box-sizing: border-box;
background-color: black;
color: #0ff;
}
input[type="date"] {
padding: 8px;
font-size: 16px;
width: 200px;
max-width: 35%;
border: 1px solid #0ff;
border-radius: 4px;
box-sizing: border-box;
background-color: black;
color: #0ff;
cursor: pointer;
}
select {
padding: 8px;
font-size: 16px;
width: 200px;
border: 1px solid #0ff;
border-radius: 4px;
box-sizing: border-box;
background-color: #000;
color: #0ff
}
footer {
padding: 20px;
}
header img {
width: 2.5em;
/* Set the width to match the font size */
height: 1em;
/* Set the height to match the font size */
}