forked from speck-agency/Speck-Academy-2019-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
100 lines (82 loc) · 1.31 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
* {
margin: 0;
}
body {
display: flex;
flex-direction: column;
}
.header {
display: flex;
align-items: baseline;
justify-content: space-between;
flex-wrap: wrap;
background-color: #333;
height: 80px;
}
h1 > a {
text-decoration: none;
color: #fff;
}
.flex_nav {
display: flex;
display: inline-block;
flex-wrap: wrap;
background-color: #333;
padding: 0px 16px;
}
.flex_nav a {
color: #fff;
padding: 8px;
text-decoration: none;
}
.flex_nav a:hover {
background-color: #5f5f5f;
cursor: pointer;
}
img {
width: 100%;
}
footer {
padding-top: 30px;
color: white;
text-align: center;
height: 100px;
background-color: #333;
}
form {
padding: 30px 20px;
}
label {
font-weight: lighter;
padding: 5px 0;
}
input[type=text], input[type=password] {
width: 100%;
padding: 5px;
margin: 5px 0 22px 0;
display: inline-block;
border: 1px solid;
}
input[type=text]:focus, input[type=password]:focus {
background-color: #ddd;
outline: none;
}
div /* This div is from register.html */ {
width: 50%;
margin:auto;
}
.button {
background-color:#333;;
border: none;
color: #ffffff;
width:35% ;
padding: 7.5px 25px;
font-family: sans-serif;
text-align: center;
opacity: 0.8;
font-size: 90%;
}
.button:hover {
opacity: 1;
cursor: pointer;
}