-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
132 lines (130 loc) · 2.32 KB
/
style.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
body{
margin:30px 350px 30px 350px;
padding:0;
background-image: url(https://cdn-media-1.freecodecamp.org/images/1*tLIXa6jWWjxfB-6AYjm2Hg.jpeg);
background-size: cover;
background-repeat: no-repeat;
background-color: #ffffff4d;
background-blend-mode: lighten;
}
#surveyform h1 {
text-align: center;
opacity:0.9;
}
#surveyform p {
text-align: center;
opacity:0.8;
}
#form{
border:5px solid #333;
padding: 30px 50px 50px 40px;
background-color: rgba(65, 57, 57, 0.6);
color:#fff;
line-height:40px;
border-radius:5px
}
#role{
width:100%;
}
#feature{
width:100%;
}
.input{
width:96%;
padding:1%;
padding-left:2.5%;
font-family:Candara;
font-size:18px;
color:rgba(0,0,0,0.8);
border-radius: 4px;
background-color:#ffd;
transition: 0.3s;
}
input:hover{
background-color:#fff;
}
.input:focus{
outline: 2px blue
box-shadow: 1px 1px 3px 3px #33bbff;
}
#form label{
font-family:arial;
font-size:22px;
font-weight:500;
color:rgba(255,255,255,0.9);
}
.radiogrp{
margin-right:10px;
}
.radiogrp:focus{
outline:2px red;
}
.checkgrp{
margin-right:10px;
}
#title{
color:#fff;
font-family:Candara;
font-size:50px;
font-weight: 900;
margin-bottom:0;
}
#subtitle{
font-family: candara;
color:#fff;
font-size:20px;
margin-top:15px;
opacity:0.9;
}
#submit{
width:100%;
padding: 1.5%;
text-transform: uppercase;
font-family:candara;
color:#fff;
background-color:rgba(0,0,0,0.9);
border-radius:3px;
transition:0.6s;
font-weight:800;
cursor: pointer;
}
#submit:hover{
background-color:rgba(0,0,0,0.3);
}
span{
font-size:18px;
}
/*responsive*/
@media (max-width:800px){
body{
margin:50px;
}
#title{
margin:20px;
font-size:40px;
}
#subtitle{
font-size:18px;
}
}
@media (max-width:500px){
body{
margin:0;
}
#title{
font-size:35px;
}
#form{
padding:20px 0px 20px 10px;
line-height: 40px;
}
.input{
width:90%;
}
#submit{
width:95%;
}
#subtitle{
margin:5px;
}
}