forked from babintheuns/babintheuns.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (65 loc) · 1.15 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
/******************************************************************************
BLOG SPECIFIC STYLES START HERE
******************************************************************************/
.row {
display:flex;
flex-wrap:wrap;
flex-direction: row;
margin:25px 0;
}
.row .item{
flex:0 0 47%;
}
.row .col3{
flex: 0 0 33%;
}
h2{
margin-top:25px;
}
.row .col2{
flex: 0 0 50%;
}
label{
font-weight:bold;
}
input[type="number"], input[type="text"], textarea{
border: none;
color: #333;
background: #eee;
border-radius: 3px;
padding: 14px 16px;
font-size: 1rem
}
textarea{
height: 6em;
width: 85%;
}
#summary{
margin-top:25px;
}
input[type='submit']{
padding: 12px 16px;
margin: 0;
border: none;
background: #222;
color: #fff;
font-size: 0.9rem;
line-height: 1;
-webkit-appearance: none;
border-radius: 3px
}
input[type="submit" i]:disabled{
background:#F2EFEC;
}
#summary, #product-summary{
border-top:1px solid #F2EFEC;
border-bottom:1px solid #F2EFEC;
border-left:none;
border-right:none;
padding:1%;
}
.calc{
border-top:5px dotted #F2EFEC;
border-bottom:5px dotted #F2EFEC;
margin-top:25px;
}