-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
126 lines (116 loc) · 2.27 KB
/
styles.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
@import url(http://fonts.googleapis.com/css?family=Rambla:400,700italic,700,400italic);
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
padding: 0;
}
body {
background: #262626;
font-family: Arial, sans-serif;
background: whitesmoke;
}
h1 {
text-align: center;
text-transform: uppercase;
font-family: "Rambla", sans-serif;
font-size: 27px;
color: #444444;
font-weight: 400;
display: inline-block;
padding-left: 42%
}
h1 span {
font-weight: 700;
}
a:-webkit-any-link {
text-decoration: none;
color: RGBA(33, 188, 215, 1);
}
.name {
color: RGBA(33, 188, 215, 1);
position: absolute;
right: 50px;
top: 12px;
text-align: right;
text-decoration: none;
}
.container {
padding-left: 30%;
}
.button {
border: 0 none;
border-radius: 2px 2px 2px 2px;
color: #FFFFFF;
cursor: pointer;
display: inline-block;
font-family: Arial,sans-serif;
font-size: 16px;
font-weight: bold;
line-height: 20px;
margin-bottom: 0;
margin-top: 10px;
padding: 7px 10px;
text-transform: none;
transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-webkit-transition: all 0.3s ease 0s;
text-align: center;
}
#result-textarea > h3 {
display: inline-block;
margin: 0;
padding-left: 10px
}
#result-textarea {
width: 99%;
padding: 1%;
}
#result-textarea > textarea {
margin-top: 10px;
width: 100%;
min-height: 300px;
border-radius: 5px;
border: 1px dashed #444444;
}
.button.red {
background: none repeat scroll 0 0 #E0645C;
color: #FFFFFF;
}
.button.red:hover {
background: none repeat scroll 0 0 #999999;
color: #FFFFFF;
}
.button.dark {
background: none repeat scroll 0 0 #444444;
color: #FFFFFF;
}
.button.dark:hover {
background: none repeat scroll 0 0 #2DB6CF;
color: #FFFFFF;
}
.button.light {
background: none repeat scroll 0 0 #999999;
color: #FFFFFF;
}
.button.light:hover {
background: none repeat scroll 0 0 #444444;
color: #FFFFFF;
}
.button.green {
background: none repeat scroll 0 0 #46b98a;
color: #FFFFFF;
}
.button.green:hover {
background: none repeat scroll 0 0 #444444;
color: #FFFFFF;
}
.button.blue {
background: none repeat scroll 0 0 #2DB6CF;
color: #FFFFFF;
}
.button.blue:hover {
background: none repeat scroll 0 0 #444444;
color: #FFFFFF;
}