forked from r4gesingh47/Hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathask.css
More file actions
120 lines (103 loc) · 2.35 KB
/
ask.css
File metadata and controls
120 lines (103 loc) · 2.35 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
@import url('https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@500&display=swap');
/*Variables*/
:root {
--main-bg-color:#FCECDD;
--div-bg-color:#FFC288;
--div-elements-color:#FEA82F;
--navbar-bg-color:#FF6701;
}
*{
box-sizing:border-box;
margin:0;
padding:0;
font-family: 'Yanone Kaffeesatz', sans-serif,monospace;
padding:0.1rem;
}
li{
list-style: none;
font-weight: bold;
}
a{
text-decoration: none;
color:white;
}
body{
background: var(--main-bg-color);
}
.homePage{
display:flex;
flex-direction: column;
width: 100%;
height: 100vh;
}
/*Navbar*/
.navbar{
display: flex;
flex-direction: row;
width: 100%;
border-radius: 11px;
align-items: center;
justify-content: space-between;
/* background: linear-gradient(5deg, #ffffff, #ffd9cb, #ffb299, #ff8969, #ff5b3a, #ff0000); */
background: var(--navbar-bg-color);
-webkit-box-shadow: 0px 7px 30px 0px rgba(255, 255, 255, 0.77);
-moz-box-shadow: 0px 7px 30px 0px rgba(253, 253, 253, 0.77);
box-shadow: 0px 7px 30px 0px rgba(241, 255, 255, 0.77);
}
.logo{
width:10%;
height: auto;
margin-top:-1rem;
}
.menus{
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
width:55%;
display: flex;
flex-direction:row;
justify-content: space-between;
}
.profile{
width: 20%;
display: flex;
flex-direction:row;
justify-content: space-between;
font-weight: bold;
}
/*Question form*/
.container{
padding: 50px;
background-color: lightblue;
}
input[type=text], textarea {
width: 100%;
padding: 15px;
margin: 5px 0 22px 0;
display: inline-block;
border: none;
background: #f1f1f1;
}
input[type=text]:focus, textarea:focus {
background-color: orange;
outline: none;
}
.line {
border: 1px solid #f1f1f1;
margin-bottom: 25px;
}
.submitbtn {
background-color: orange;
color: white;
padding: 16px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
opacity: 0.9;
}
.submitbtn:hover {
opacity: 2;
}