-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (54 loc) · 1.39 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
*{
margin: 0;
padding: 0;
box-sizing:border-box;
font-family:'poppins',sans-serif;
}
body{
display:flex;
height:100vh;
justify-content:center;
align-items:center;
background: url("https://media.istockphoto.com/id/1353553203/photo/forest-wooden-table-background-summer-sunny-meadow-with-green-grass-forest-trees-background.jpg?b=1&s=170667a&w=0&k=20&c=-jvR1WDwcloLXRgRTGeyG3frvrhPIbegdemeL6vY2Pk=");
background-size: cover;
background-repeat: no-repeat;
}
.container{
max-width: 700px;
width: 100%;
background:#fff;
padding:25px 30px;
border-radius:5px;
outline-style: dotted;
}
.container .title{
font-size: 25px;
font-weight:500;
}
.container form .user-details{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.user-details .input-box input{
height: 45px;
width:100%;
border-radius: 5px;
padding-left:15px;
font-size: 16px;
border-bottom-width: 2px;
}
.form .rating-section{
display:flex;
align-items:center;
}
.form .rating-section{
height: 50px;
width: 100%;
font-size: 18px;
background: #ccc;
}
.user-details.input-box input{
font-size:15px;
width:12rem;
}