-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwmpl-style.css
108 lines (87 loc) · 1.44 KB
/
wmpl-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
html {
height: 100%;
}
body {
height: 100%;
min-height: 100%;
display: flex;
flex-direction: column;
margin: 0;
font-family: sans-serif;
font-size: 1.2em;
}
article {
width: 50%;
margin: 1em auto;
flex: 1 0 auto;
}
article > header {
display: flex;
}
article > header > h1 {
flex: 1 1 auto;
}
article > header > nav {
flex: 0 0 auto;
}
article > header > nav a {
background-color: #f8f9fa;
padding: 0.5em 0.75em;
border-radius: 5px;
border: 1px solid #eaecf0;
color: #000;
text-decoration: 0;
}
footer {
flex-shrink: 0;
background: #54595d;
color: #fff;
padding: 1em 25%;
display: flex;
}
footer div {
width: 50%;
}
footer a {
color: #fff;
}
form {
display: flex;
}
input {
font-size: 1.2em;
}
input[type=text] {
box-sizing: border-box;
border: 1px solid #b6c3cc;
border-radius: 5px;
color: #6d7378;
font-weight: 700;
margin: 0;
padding: .8rem 1rem;
}
input[type=text]:invalid {
border-color: red;
}
.button {
background-color: #3a25ff;
color: #fff;
display: inline-block;
font-weight: 700;
border-radius: 5px;
cursor: pointer;
padding: .6rem 1rem;
transition: .3s all;
width: auto;
border: none;
outline: none;
}
.combined-input-and-submit-left,
input[type=text].combined-input-and-submit-left {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.combined-input-and-submit-right {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}