-
Notifications
You must be signed in to change notification settings - Fork 32
/
style.css
79 lines (51 loc) · 968 Bytes
/
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
html, body {
font-family: 'Montserrat', sans-serif;
}
h1 {
border-left: 2px solid #00f28f;
font-size: 48px;
font-weight: 400;
padding-left: 20px;
}
.main {
margin-top: 80px;
}
form input {
background: #f0f0f0;
border: none;
border-left: 2px solid #fff;
font-size: 36px;
padding: 20px;
width: 100%;
transition: background 2s, border-left 2s;
}
form input:focus {
background: #fff;
border-left: 2px solid #000;
box-shadow: none;
outline: none;
}
.btn {
background: transparent;
border: none;
color: #00f28f;
cursor: pointer;
font-size: 36px;
padding: 20px 24px;
transition: background 2s, color 2s;
}
.btn:hover {
background: #00f28f;
color: #fff;
}
.comments {
margin-top: 20px;
list-style: none;
padding-left: 0px;
}
li {
padding-left: 20px;
border-left: 2px solid #000;
font-size: 36px;
margin: 0 0 36px;
}