-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
114 lines (106 loc) · 2.2 KB
/
styles.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
body{
font-family: "Roboto", "Open Sans", "Lato", sans-serif;
/* text-align: justify; */
background-image: linear-gradient(115deg, rgba(247, 247, 255,0.2),
rgba(190, 166, 166, 0.2)), url(https://wallpapertag.com/wallpaper/full/4/7/d/221111-travel-background-2560x1600-hd-for-mobile.jpg);
font-size: 1rem;
font-weight: 550;
line-height: 1.4;
/* color: #252525; */
margin: 0;
}
h1{
margin: 1em auto;
text-align: center;
margin-bottom:0.2em;
color:#0a0a23;
font-style: bold;
padding:10px;
}
p{
text-align: center;
color:#0a0a23;
font-style: bold;
}
form{
background:linear-gradient(90deg, rgba(195, 169, 169, 0.2), rgba(238, 238, 238, 0.2));
margin-top:auto;
margin-bottom:auto;
margin-right:10%;
margin-left:10%;
text-align:left;
width: 76vw;
border-radius: 8em;
/* margin: 0 auto; */
padding-bottom: 2em;
}
label {
display: block;
margin: 0.5rem 0;
}
fieldset{
border:none ;
padding: 2rem 0;
margin-left:0.5em;
}
hr{
width:60vw;
background-color:rgb(115, 115, 144);
margin: 1em auto;
}
input,textarea,
select {
width:auto;
min-height: 2em;
border-radius: 30em;
background-color: #6363b0;
vertical-align:middle
}
textarea,
select {
width:70vw;
background:linear-gradient(90deg, rgba(88, 88, 207, 0.8),
rgba(238, 235, 255, 0.7));
border: 1px solid #0a0a23;
color: #ffffff;
width:70vw;
border-radius:30em;
text-align: justify;
}
.personal input{
background:linear-gradient(90deg, rgba(88, 88, 207, 0.8),
rgba(238, 235, 255, 0.7));
border: 1px solid #0a0a23;
color: #ffffff;
width:70vw;
border-radius:30em;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color: #bbb4d8;
opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
color:#bbb4d8;
}
::-ms-input-placeholder { /* Microsoft Edge */
color: #bbb4d8;
}
select{
color:#bbb4d8;
}
legend{
color:black;
font-size: 1.5rem;
}
button{
display:block;
width:60%;
text-align: center;
min-height: 2em;
border-radius: 30em;
background: linear-gradient(90deg, rgba(57, 57, 183, 0.8),
rgba(134, 85, 85, 0.7));
margin:1em auto;
color:black;
font-size: 1.5rem;
}