-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (105 loc) · 2.08 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
.img_logo {
width: 160px;
height: auto;
}
.header, .navigation_header {
display:flex;
flex-direction:row;
align-items:center;
}
.header {
box-shadow: 1px, 1px, 4px, black;
height: 4em;
justify-content: space-between;
padding: 0 10%;
background-color: rgb(223, 218, 218);
border-radius: 10px;
}
.navigation_header {
gap: 3em;
list-style: none;
z-index: 2;
}
.navigation_header a{
text-decoration: none;
color:rgb(201, 3, 19);
transition: 1s;
font-weight: bold;
}
.btn_icon_header {
display: none;
background-color: transparent;
border: none;
color: red;
cursor: pointer;
}
@media screen and (max-width:768px) {
.btn_icon_header {
display:block;
}
.navigation_header{
position:absolute;
flex-direction: column;
top: 0;
background-color: rgb(223, 218, 218);
height: 100%;
width: 35vw;
padding: 16px;
animation-duration: 1s;
margin-left:-100vw;
}
}
@keyframes showSidebar {
from {margin-left: -100vw;}
top {margin-left: -10vw;}
}
body {
color: rgb(0, 0, 0);
font-family: 'Lato', sans-serif;
}
form {
min-width: 280px;
max-width: 1000px;
}
h1 {
font-family: 'lato', sans-serif;
font-size: 30px;
color:#32292F;
background-color: rgb(227, 15, 35);
border-radius:10px;
text-align: center;
letter-spacing: 1px;
height: 40px;
width: 100%;
box-shadow: 1px, 1px, 4px, black;
}
h2 {
color:#444444;
text-align:justify;
}
.question {
padding: 10px;
}
.range {
padding: 10px;
}
.text_area {
padding: 10px;
}
textarea {
margin: 8px 0;
padding-left: 1px;
width: 100%;
height: 120px;
border: 1x solid #ccc;
position:relative;
font-size: 16px;
max-width: 800px;
color: #444;
resize:initial;
font-family: 'lato', sans-serif;
font-size: 15px;
}
.submit {
text-align: center;
}