-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (62 loc) · 1.36 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
h2 {
font-family: consolas;
padding-left: 16px;
font-weight: lighter;
text-transform: lowercase;
color: rgb(87, 87, 87);
}
h2::before {
content: ":: ";
font-size: small;
color: rgb(182, 182, 182);
}
h2::after {
content: " ::";
font-size: small;
color: rgb(182, 182, 182);
}
textarea {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
padding: 8px;
margin-left: 8px;
min-width: 50%;
min-height: 300px;
overflow: auto;
border-radius: 3px;
border: 1px solid #ccc;
box-shadow: 1px 1px 1px #999;
}
button {
display: inline-block;
padding: 15px 25px;
font-size: 16px;
position: relative;
bottom: 24px;
cursor: pointer;
text-align: center;
text-transform: uppercase;
text-decoration: none;
outline: none;
border: none;
border-radius: 3px;
color: white;
background-color: rgb(87, 87, 87);
box-shadow: 0 9px rgb(120, 120, 140);
transition-duration: 0.1s;
}
button:hover {
background-color: rgb(70, 70, 70);
box-shadow: 0 8px rgb(120, 120, 140);
transform: translateY(1px);
}
button:active {
background-color: rgb(60, 60, 60);
box-shadow: 0 5px rgb(120, 120, 140);
transform: translateY(4px);
}
p {
font-family: consolas;
padding-left: 16px;
text-transform: lowercase;
color: rgb(65, 65, 65);
}