-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
165 lines (122 loc) · 2.99 KB
/
style.css
File metadata and controls
165 lines (122 loc) · 2.99 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
@font-face {
font-family: title font;
src: url(Star\ Vintage.ttf);
}
@font-face {
font-family: main font;
src: url(Soft\ Marshmallow.woff);
}
html {
font-family: main font;
background-color: #000000;
color: whitesmoke;
text-align: center;
background-image: url(curtains\(2\).png);
background-position: 40% 60%;
background-repeat: no-repeat;
background-size: 1500px;
background-attachment: fixed;
padding-top: 80px;
padding-left: 200px;
padding-right: 200px;
}
h1 {
font-family: title font;
font-size: 60px;
}
a:link {
color:whitesmoke;
border-radius: 25px;
background-color: #BFAAD9;
padding: 10px ;
text-decoration: none;
}
a:visited {
color:whitesmoke;
}
.button {
line-height: 9;
position: absolute;
bottom: 24%;
right: 44.3%;
}
a:link:hover {
background-color:#A080C6;
}
button[type=button], button[type=submit]{
background-color: #BFAAD9;
border: 2px solid #A080C6;
border-radius: 25px;
color: whitesmoke;
padding: 30px, 32px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
}
button[type=button]:hover,button[type=submit]:hover{
background-color: #A080C6;
}
input[type=text],input[type=number]:focus {
border: 3px solid #af04ff;
}
input[type=text],input[type=number] {
border: 2px solid #A080C6;
border-radius: 8px;
margin: 4px 2px;
}
input[type='radio']:after {
width: 15px;
height: 15px;
border-radius: 15px;
top: -2px;
left: -1px;
position: relative;
background-color: #d1d3d1;
content: '';
display: inline-block;
visibility: visible;
border: 2px solid whitesmoke;
}
input[type='radio']:checked:after {
width: 15px;
height: 15px;
border-radius: 15px;
top: -2px;
left: -1px;
position: relative;
background-color: #af04ff;
content: '';
display: inline-block;
visibility: visible;
border: 2px solid whitesmoke;
}
select {
margin: 4px 2px;
border: 2px solid #A080C6;
border-radius: 4px;
background-color: whitesmoke;
}
select:focus {
margin: 4px 2px;
border: 3px solid #af04ff;
border-radius: 4px;
background-color: whitesmoke;
}
/* Centered, soft orange warning */
.warning {
background-color: #ffe5b4; /* light orange background */
color: #ff7201; /* darker orange text */
border: 2px solid #ff7201; /* border in dark orange */
border-radius: 10px; /* rounded edges */
padding: 4px 10px;
margin-top: 6px;
font-size: 0.8em;
display: none; /* hidden by default */
font-weight: 500;
width: fit-content; /* shrink to text */
max-width: 80%;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
margin-left: auto; /* center horizontally */
margin-right: auto; /* center horizontally */
text-align: center; /* center text inside */
}