-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassignment1.css
129 lines (110 loc) · 2.28 KB
/
assignment1.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
header {
padding-left: 10px;
padding-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
background: #ffffff;
box-shadow: 0 2px 6px 0 rgba(0,0,0,.12), inset 0 -1px 0 0 #dadce0;
left: 0;
right: 0;
top: 0;
transform: translate3d(0,0,0);
transition: transform .4s,background .4s;
z-index: 100;
}
.logo {
width: 100px;
}
body {
margin: 0;
}
/* .half-page {
width: 49%;
display: inline-block;
}
section {
padding-left: 10%;
padding-right: 10%;
padding-top: 25px;
padding-bottom: 25px;
} */
section {
display: flex;
width: 950px;
margin: 0 auto;
padding-top:40px;
}
.half-page {
width: 49%;
display: inline-block;
}
h1 {
color: red;
margin-top: 0;
}
input {
color: rgb(84, 84, 94);
border: 1px solid rgb(235, 236, 240);
height: 36px;
width: 100%;
border-radius: 4px;
font: inherit;
padding: 5px;
margin-bottom: 10px;
}
input[type="text"]::placeholder {
/* Firefox, Chrome, Opera */
padding-left: 10px;
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 50px;
background-color: #f2f2f2;
color: #5f6368;
text-align: center;
}
.submitbutton {
display: inline-flex;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: center;
padding: 8px 17px;
white-space: nowrap;
outline: none;
appearance: none;
border-radius: 6px;
border-width: 0px;
border-style: none;
border-color: transparent;
text-decoration: none;
cursor: pointer;
position: relative;
min-height: 50px;
min-width: 50px;
font-size: 18px;
font-weight: 700;
font-family: AxLLCircular, Helvetica, Arial, sans-serif;
color: rgb(255, 255, 255);
background-color: rgb(97, 47, 255);
}
form {
margin-bottom: 16px;
background: rgb(255, 255, 255);
padding: 32px 0px 0px;
box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 16px 0px;
border-radius: 6px;
border: 1px solid rgb(235, 236, 240);
transition: transform 150ms ease 0s, boxShadow 150ms ease-in 0s;
position: relative;
width: 100%;
}
p {
font-family: AxLLCircular, Helvetica, Arial, sans-serif;
}
fieldset {
border: 0px;
}