-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (75 loc) · 1.37 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
*{
margin: 0;
padding: 0;
}
.container {
width: 1200px;
margin: 0 auto;
}
img {
max-width: 100%;
max-height: 100%;
}
button:hover {
cursor: pointer;
}
.first_section, .second_section {
text-align: center;
padding: 40px 0;
}
.first_sect_inn form label {
display: block;
margin: 25px 0;
}
.first_sect_inn form label input {
border: 0;
border-bottom: 1px solid #eee;
font-size: 14px;
line-height: 20px;
padding: 8px 0px;
width: 45%;
outline: none;
}
.first_sect_inn form button {
background-color: #000;
color: #fff;
outline: none;
border: 0;
padding: 8px 25px;
font-size: 15px;
line-height: 20px;
border-radius: 20px;
}
.first_sect_inn form label[check="active"] input {
border-color: #000;
font-weight: bold;
}
.second_sect_inn .cmn_box {
display: inline-block;
vertical-align: top;
width: 25%;
margin: 30px 20px;
padding: 20px;
position: relative;
border: 1px solid #000;
}
.second_sect_inn .cmn_box figure {
height: 200px;
}
.second_sect_inn .cmn_box button {
display: none;
position: absolute;
right: 10px;
top: 10px;
border-radius: 20px;
background-color: #000;
color: #fff;
border: 0;
outline: none;
font-size: 14px;
line-height: 19px;
padding: 5px 18px;
}
.second_sect_inn .cmn_box[currelem="active"] button{
display: block;
}