-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (35 loc) · 723 Bytes
/
style.css
File metadata and controls
41 lines (35 loc) · 723 Bytes
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
/*
Coded by Batuhan Kök
URL: http://www.batuhan.me
*/
@import url(https://fonts.googleapis.com/css?family=PT+Sans&subset=latin,latin-ext);
* {
outline: 0;
}
body {
font-family: 'PT Sans', sans-serif;
font-size: 15px;
width: 400px;
background-color: #f9f9f9;
}
.content {
margin: 0 auto;
padding: 10px;
border: 1px solid #ccc;
border-radius: 2px;
background-color: #ffffff;
}
.content input[type="number"] {
border: 1px solid #ccc;
font-family: 'PT Sans', sans-serif;
font-size: 15px;
padding: 10px;
border-radius: 2px;
width: 94%;
}
.message {
color: #e8350d;
border-top: 1px solid #e8350d;
margin-top: 10px;
padding-top: 10px
}