-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
92 lines (77 loc) · 1.73 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
*{
box-sizing: border-box;
}
body{
background-color: whitesmoke;
justify-content: center;
align-items: center;
display: flex;
min-height: 100;
margin: 1;
}
.container{
width: 650px;
border-radius: 15px;
background-color: white;
box-shadow: 0px 2.5px 11px goldenrod;
}
.row{
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: space-around;
}
h1{
text-align: center;
margin: 1 1 15px;
color: goldenrod;
}
h3{
text-align: center;
margin: 1 1 15px;
color: green;
}
.small-container{
max-width: 600px;
margin: auto;
padding: 20px;
}
.col{
flex-basis: 30%;
min-width: 25px;
margin-bottom: 30px;
}
.col img{
width: 100%;
}
.button{
cursor: pointer;
border-radius: 4px;
color: white;
display: block;
font-size: 16px;
padding: 10px;
margin-top:20px;
width: auto;
background-color: goldenrod;
}
.form {
padding: 25px 35px;
}
.info{
display: grid;
margin-bottom: 20px;
grid-template-columns: 40% 60%;
}
.form button{
cursor: pointer;
border-radius: 4px;
color: white;
display: block;
font-size: 16px;
padding: 10px;
margin-top:20px;
width: auto;
background-color: goldenrod;
border: 2p solid goldenrod;
}