-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.json
More file actions
110 lines (110 loc) · 3.6 KB
/
css.json
File metadata and controls
110 lines (110 loc) · 3.6 KB
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
{
"CSS for HTML Boilerplate":{
"prefix": "!ccsshtml",
"scope": "css",
"body": [
"body{",
" width: 90%;",
" margin: 0 auto;",
" background-color: #2c2c2c;",
"}",
" header{",
" width: 100%;",
" height: 90px;",
" background: #555454;",
" border-bottom-left-radius: 16px;",
" border-bottom-right-radius: 16px;",
" padding-bottom: 6px;",
" text-align: center;",
" -moz-box-shadow: 0px 3px 5px 6px #242323;",
" -webkit-box-shadow: 0px 3px 5px 6px #242323;",
" box-shadow: 0px 3px 5px 6px #242323;",
"}",
"h1{",
" color: #6ef6ef;",
" text-shadow: 0 3px #242323;",
"}",
"nav{",
" width: 40%;",
" height: 30px;",
" margin: 0 auto;",
" text-align: center;",
" justify-content: center;",
" justify-self: center;",
"}",
" nav li{",
" list-style-type: none;",
" display: inline;",
" padding: 2px;",
" }",
" nav li :hover{",
" border: 2px groove #535424;",
" border-radius: 6px;",
" text-shadow: none;",
" background: #6ef6ef;",
" color: #2c2c2c;",
" }",
" nav li :active{",
" border: 2px groove #535424;",
" border-radius: 6px;",
" background: #6ef6ef;",
" color: #2c2c2c;",
" }",
" nav a{",
" text-decoration: none;",
" font-size: 1.3em;",
" color: #6ef6ef;",
" text-shadow: 0 3px #242323;",
" padding: 2px;",
" }"
],
"description": "CSS Style for HTML Boilerplate"
},
"CSS for HTMLCON":{
"prefix": "!csscon",
"scope": "css",
"body": [
"#form-wrap{",
" width: 350px;",
"",
"}",
".contact{",
" background: #606360;",
" box-shadow: 2px 3px #2c2c2c;",
" border-radius: 12px;",
" padding: 10px;",
" color: #6ef6ef;",
" text-shadow: 0 2px #2c2c2c;",
"}",
" #name{",
" width: 170px;",
" border-radius: 6px;",
" margin-bottom: 5px;",
" margin-left: 15px;",
" }",
" #email{",
" width: 170px;",
" border-radius: 6px;",
" margin-bottom: 5px;",
" margin-left: 15px;",
" }",
" #message{",
" border-radius: 6px;",
" margin-bottom: 5px;",
" }",
" #button-wrap{",
" text-align: center;",
" justify-content: center;",
" }",
" #submit{",
" border-radius: 6px;",
" margin: 0 5px;",
" }",
" #reset{",
" border-radius: 6px;",
" margin: 0 5px;",
" text-align: center;",
" }"
]
}
}