emacs配置

如果想要考场简单配置也可以去下面看,需要别的考场配置可以自己在下面比较全的里面找

考试备忘录(有新的就会更的。。。)

By Junlier

 (global-set-key [f9] 'compile-file)
(global-set-key [f10] 'gud-gdb)
(global-set-key (kbd "C-s") 'save-buffer)
(global-set-key (kbd "C-z") 'undo)
(global-set-key (kbd "RET") 'newline-and-indent)
(global-linum-mode t)
(show-paren-mode t)
(define-key key-translation-map (kbd "C-d") (kbd "M-p M-y"))
(global-set-key (kbd "M-p M-y") 'kill-whole-line)
(define-key key-translation-map (kbd "C-a") (kbd "C-x h"))
(setq c-default-style "awk")
;;;考场必备
(ido-mode t)
(setq default-frame-alist
'((vertical-scroll-bars)
(top . )
(left . )
(width . )
(height . )
(background-color . "grey15")
(foreground-color . "grey")
(cursor-color . "gold1")
(mouse-color . "gold1")
(tool-bar-lines . )
(menu-bar-lines . )
(scroll-bar-lines . )
(right-fringe)
(left-fringe)))
(global-hl-line-mode )
(set-face-background 'highlight "gray5")
(set-face-foreground 'region "cyan")
(set-face-background 'region "blue")
(set-face-foreground 'secondary-selection "skyblue")
(set-face-background 'secondary-selection "darkblue")
;;;;;设置org模式
(setq org-startup-indented t)
;(setq org-log-done 'time)
;(s.etq org-log-done 'note)
;
;;;无关紧要
(set-cursor-color "wheat")
(set-mouse-color "wheat")
(global-font-lock-mode t);;高亮
;;;;;设置编译信息
(defun compile-file ()
(interactive)
(compile (format "g++ -o %s %s -g -lm -Wall" (file-name-sans-extension (buffer-name))(buffer-name))))
;;(global-set-key (kbd "<f9>") 'compile-file)
;;;;;设置一键调试
;;;;;改变emacs标题栏的标题
(setq frame-title-format "%b By LJL")
;;;;;允许emacs和外部其他程序的粘贴
(setq x-select-enable-clipboard t)
;; 显示列号
(setq column-number-mode t)
;;设置tab为2个空格的宽度
(setq default-tab-width )
(setq c-basic-offset )
;;;;;启用时间显示设置,在minibuffer上面的那个杠上(忘了叫什么来着)
(display-time-mode )
;;;;;时间使用24小时制
(setq display-time-24hr-format t)
;;;;;时间显示包括日期和具体时间
(setq display-time-day-and-date t)
;;;;;时间的变化频率,单位多少来着?
(setq display-time-interval )
;;;;;是用滚轴鼠标
(mouse-wheel-mode t)
;;;;;备份设置
;;;;;emacs还有一个自动保存功能,默认在~/.emacs.d/auto-save-list里,这个非常有用,我这里没有改动,具体可以参见Sams teach yourself emacs in 24hours(我简称为sams24)
;;;;;备份设置方法,直接拷贝
(setq backup-by-copying t)
;; 自动存盘
(setq auto-save-mode t)
;;;;;去掉烦人的警告铃声
(setq visible-bell nil)
(setq ring-bell-function 'ignore)
;;;;;指针不要闪,我得眼睛花了
(blink-cursor-mode -)
;;;;;滚动页面时比较舒服,不要整页的滚动
(setq scroll-step
scroll-margin
scroll-conservatively )
;;;;;设定删除保存记录为200,可以方便以后无限恢复
(setq kill-ring-max )
;;;;;修改透明度
(set-frame-parameter (selected-frame) 'alpha (list 85 50))
(add-to-list 'default-frame-alist (cons 'alpha (list )))
(setq-default cursor-type 'bar)
(show-paren-mode );;括号匹配
(fset 'yes-or-no-p 'y-or-n-p);;酱油的
(setq make-backup-files nil)
(global-auto-revert-mode t);自动reload文件
(global-set-key (kbd "<f8>") 'gdb-many-windows)
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(blink-cursor-mode nil)
'(column-number-mode t)
'(cua-mode t nil (cua-base))
'(display-time-mode t)
'(inhibit-startup-screen t)
'(show-paren-mode t))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(default ((t (:family "Ubuntu Mono" :foundry "unknown" :slant normal :weight bold :height 143 :width normal)))))
(auto-insert-mode) ;;; Adds hook to find-files-hook
(setq auto-insert-directory "~/.emacs.d/mytemplates/") ;;; Or use custom, *NOTE* Trailing slash important
(setq auto-insert-query nil) ;;; If you don't want to be prompted before insertion
(define-auto-insert "\." "moban.cpp")

By Matsuk zhu鸡

(global-set-key [f9] 'compile-file)
(global-set-key [f10] 'gud-gdb)
(global-set-key (kbd "C-s") 'save-buffer)
(global-set-key (kbd "C-z") 'undo)
(global-set-key (kbd "RET") 'newline-and-indent)
(global-linum-mode t)
(show-paren-mode t)
(define-key key-translation-map (kbd "C-d") (kbd "M-p M-y"))
(global-set-key (kbd "M-p M-y") 'kill-whole-line)
(define-key key-translation-map (kbd "C-a") (kbd "C-x h"))
(setq c-default-style "awk")
(setq x-select-enable-clipboard t)
;;;考场必备
(ido-mode t) (setq default-frame-alist
'((vertical-scroll-bars)
(top . )
(left . )
(width . )
(height . )
(background-color . "grey15")
(foreground-color . "grey")
(cursor-color . "gold1")
(mouse-color . "gold1")
(tool-bar-lines . )
(menu-bar-lines . )
(scroll-bar-lines . )
(right-fringe)
(left-fringe))) (global-hl-line-mode ) (set-face-background 'highlight "gray5")
(set-face-foreground 'region "cyan")
(set-face-background 'region "blue")
(set-face-foreground 'secondary-selection "skyblue")
(set-face-background 'secondary-selection "darkblue") ;;;;;设置org模式
(setq org-startup-indented t)
;(setq org-log-done 'time)
;(s.etq org-log-done 'note)
; ;;;无关紧要
(set-cursor-color "wheat")
(set-mouse-color "wheat")
(global-font-lock-mode t);;高亮
;;;;;设置编译信息
(defun compile-file ()
(interactive)
(compile (format "g++ -o %s %s -g -lm -Wall" (file-name-sans-extension (buffer-name))(buffer-name))))
;;(global-set-key (kbd "<f9>") 'compile-file)
;;;;;设置一键调试
;;;;;改变emacs标题栏的标题
(setq frame-title-format "%b (;*=*)/")
;;;;;允许emacs和外部其他程序的粘贴
(setq x-select-enable-clipboard t)
;; 显示列号
(setq column-number-mode t)
;;设置tab为2个空格的宽度
(setq default-tab-width )
(setq c-basic-offset )
;;;;;启用时间显示设置,在minibuffer上面的那个杠上(忘了叫什么来着)
(display-time-mode )
;;;;;时间使用24小时制
(setq display-time-24hr-format t)
;;;;;时间显示包括日期和具体时间
(setq display-time-day-and-date t)
;;;;;时间的变化频率,单位多少来着?
(setq display-time-interval )
;;;;;是用滚轴鼠标
(mouse-wheel-mode t)
;;;;;备份设置
;;;;;emacs还有一个自动保存功能,默认在~/.emacs.d/auto-save-list里,这个非常有用,我这里没有改动,具体可以参见Sams teach yourself emacs in 24hours(我简称为sams24)
;;;;;备份设置方法,直接拷贝
(setq backup-by-copying t)
;; 自动存盘
(setq auto-save-mode t)
;;;;;去掉烦人的警告铃声
(setq visible-bell nil)
;;;;;滚动页面时比较舒服,不要整页的滚动
(setq scroll-step
scroll-margin
scroll-conservatively )
;;;;;设定删除保存记录为200,可以方便以后无限恢复
(setq kill-ring-max )
;;;;;修改透明度
(set-frame-parameter (selected-frame) 'alpha (list 85 50))
(add-to-list 'default-frame-alist (cons 'alpha (list )))
(setq-default cursor-type 'bar) (show-paren-mode );;括号匹配
(fset 'yes-or-no-p 'y-or-n-p);;酱油的
(setq make-backup-files nil)
(global-auto-revert-mode t);自动reload文件 (global-set-key (kbd "<f8>") 'gdb-many-windows) (custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(column-number-mode t)
'(cua-mode t nil (cua-base))
'(display-time-mode t)
'(inhibit-startup-screen t)
'(show-paren-mode t))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(default ((t (:family "Ubuntu Mono" :foundry "unknown" :slant normal :weight normal :height normal :width normal)))))
(auto-insert-mode) ;;; Adds hook to find-files-hook
(setq auto-insert-directory "~/.emacs.d/mytemplates/") ;;; Or use custom, *NOTE* Trailing slash important
(setq auto-insert-query nil) ;;; If you don't want to be prompted before insertion
(define-auto-insert "\." "moban.cpp")

By Mr Unknown

(global-hl-line-mode t)
(ido-mode t)
(set-background-color "black")
(set-foreground-color "pink")
(scroll-bar-mode -)
(global-linum-mode t)
(set-scroll-bar-mode nil)
(setq-default cursor-type 'bar)
(add-hook 'c-mode-hook 'hs-minor-mode)
(add-hook 'c++-mode-hook 'hs-minor-mode)
(setq kill-ring-max )
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(default ((t (:family "Courier 10 Pitch" :foundry "bitstream" :slant normal :weight normal :height 120 :width normal)))))
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(blink-cursor-mode nil)
'(column-number-mode t)
'(cua-mode t nil (cua-base))
'(display-time-mode t)
'(inhibit-startup-screen t)
'(show-paren-mode t)
'(tool-bar-mode nil)) (set-face-foreground 'highlight "white")
(set-face-background 'highlight "Blue")
(set-face-foreground 'region "cyan")
(set-face-background 'region "dark slate gray")
(setq-default indent-tabs-mode nil)
(setq default-tab-width )
(setq c-basic-offset )
(setq tab-stop-list ())
(display-time-mode ) (setq scroll-margin scroll-conservatively )
(setq frame-title-format "emacs %b by_Fenghr")
(setq-default kill-whole-line t)
(setq make-backup-files nil)
(setq-default make-backup-files nil)
(setq user-full-name "Fenghr") (defun common-compile ()
(interactive)
(compile (format "g++ -o %s %s -g -Wall" (file-name-sans-extension (buffer-name))(buffer-name))))
(defun wuxianzhan+O2 ()
(interactive)
(compile (format "g++ -o %s %s -g -Wall -O2" (file-name-sans-extension (buffer-name))(buffer-name))))
(defun open-in-file()
(interactive)
;;(shell-command (format "if not exist %s.in cd.script -f %s.in" (file-name-sans-extension (buffer-name))(file-name-sans-extension (buffer-name))))
(shell-command (format "touch %s.in" (file-name-sans-extension (buffer-name))))
(shell-command (format "xdg-open %s.in" (file-name-sans-extension (buffer-name))))
(shell-command (format "rm %s.in~" (file-name-sans-extension (buffer-name))))
)
(defun only-run ()
(interactive)
(shell-command (format "./%s" (file-name-sans-extension (buffer-name))))
)
(defun run-and-show-result ()
(interactive)
(shell-command (format "./%s" (file-name-sans-extension (buffer-name))))
(shell-command (format "xdg-open %s.out" (file-name-sans-extension (buffer-name))))
)
(global-set-key [f1] 'speedbar)
(global-set-key [f2] 'delete-other-windows)
(global-set-key [f3] 'hs-hide-block)
(global-set-key [f4] 'hs-show-block)
(global-set-key [f5] 'wuxianzhan+O2)
(global-set-key [f6] 'gud-gdb)
(global-set-key [f7] 'calc)
(global-set-key [f8] 'zone)
(global-set-key [f9] 'common-compile)
(global-set-key [f10] 'open-in-file)
(global-set-key [f11] 'only-run)
(global-set-key [f12] 'run-and-show-result)
(set-frame-parameter (selected-frame) 'alpha (list 85 55))
(add-to-list 'default-frame-alist (cons 'alpha (list )))
(put 'scroll-left 'disabled nil)

用起来的感想吧?

Junlier的字体比较粗,matsuk的字体比较清秀,其他的这两个差不多。。。

然后fhr那个就比较骚了。。。

博客源代码

这个是我的源代码,中间可以找到background换背景之类的,然后一些也有注释。。。看不懂

反正先放上来了。。。

如果想要侧边栏和界面首尾的什么东西的代码就单独联系吧。。。

/*
Date: 17.V.2011
Author: pumbur <pumbur@pumbur.net>
*/
.cnblogs-markdown .hljs {
display: block;
overflow-x: auto;
padding: .5em;
background: black !important;
opacity: !important;
color:#F8F8F2 !important;
font-size:15px !important;
}
a
{
cursor:url('http://fq.wc.lt//up/1499563659.cur'),auto;
} .cnblogs-markdown .hljs,
.cnblogs-markdown .hljs-subst {
color: #aaa;
} .cnblogs-markdown .hljs-section {
color: #fff;
} .cnblogs-markdown .hljs-quote,
.cnblogs-markdown .hljs-meta-keyword {
color: #B85C00;
} .cnblogs-markdown .hljs-metahttp://images.cnblogs.com/cnblogs_com/cjoierljl/1185318/o_2018-04-13%2019-50-31%e5%b1%8f%e5%b9%95%e6%88%aa%e5%9b%be.png
{
color:Crimson ;
} .cnblogs-markdown .hljs-meta-string
{
color:pink;
} .cnblogs-markdown .hljs-comment{
color:skyblue;
} .cnblogs-markdown .hljs-string,
.cnblogs-markdown .hljs-symbol,
.cnblogs-markdown .hljs-bullet,
.cnblogs-markdown .hljs-regexp {
color: #ffcc33;
} .cnblogs-markdown .hljs-number
{
color:DarkOrchid ;
}
.cnblogs-markdown .hljs-addition {
color: #00cc66;
} .cnblogs-markdown .hljs-built_in
{
color:gold;
}
.cnblogs-markdown .hljs-builtin-name,
.cnblogs-markdown .hljs-literal,
.cnblogs-markdown .hljs-type,
.cnblogs-markdown .hljs-template-variable,
.cnblogs-markdown .hljs-attribute,
.cnblogs-markdown .hljs-link {
color: #32aaee;
} .cnblogs-markdown .hljs-keyword
{
color:#74E22D;
} .cnblogs-markdown .hljs-selector-tag,
.cnblogs-markdown .hljs-name,
.cnblogs-markdown .hljs-selector-id,
.cnblogs-markdown .hljs-selector-class {
color: #6644aa;
} .cnblogs-markdown .hljs-title
{
color :red;
}
.cnblogs-markdown .hljs-variable,
.cnblogs-markdown .hljs-deletion,
.cnblogs-markdown .hljs-template-tag {
color: #bb1166;http://images.cnblogs.com/cnblogs_com/cjoierljl/1185318/o_curry4.jpg
} .cnblogs-markdown .hljs-section,
.cnblogs-markdown .hljs-doctag,
.cnblogs-markdown .hljs-strong {
font-weight: bold;
} .cnblogs-markdown .hljs-emphasis {
font-style: italic;
} #blogTitle h1 {
font-size: 40px;
font-weight: bold;
line-height: .5em;
margin-top: 20px;
} #blogTitle h2 {
font-weight: normal;
font-size: 18px;
line-height: 1.846153846;
color: #;
float: left;
}
.postBody a:link, .postBody a:visited, .postBody a:active {
text-decoration: none;
}
.postBody a:link,
.postBody a:visited{
color:#8470FF;}
.postBody a:hover,
.postBody a:active{
color: #00FF7F;} #sideBar {
margin-top: -15px;
width: 320px;
min-height: 200px;
padding: 0px 0px 5px;
float: right;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
overflow: hidden;
} #home {
margin: auto;
margin-top: 0px;
margin-bottom: 0px;
width: %;
opacity:0.8;
min-width: 1050px;
background-color: #FFF;
padding: 30px;
margin-top: 50px;
margin-bottom: 50px;
box-shadow: 2px 6px rgba(, , , 0.3);
} #mainContent {
width: %;
} body{
background: url(https://www.cnblogs.com/images/cnblogs_com/cjoierljl/1185318/o_curry22bizhi.png) fixed no-repeat top center;
cursor:url('http://fq.wc.lt//up/1499563659.cur'),auto;
} #cnblogs_post_body {
margin-bottom: 20px;
font-size: 16px;
} /*发表文章的标题*/
.postTitle {
border-left: 3px solid #21759b;
margin-bottom: 10px;
font-size:20px;
float: right;
width: %;
clear: both;
}
.postTitle a:link, .postTitle a:visited, .postTitle a:active {
color: #21759b;
transition: all .4s linear 0s;
} .postTitle a:hover {
margin-left: 30px;
color: #0f3647;
text-decoration: none;
} #cnblogs_post_body
{
color: black;
font: .875em/.5em "微软雅黑" , "PTSans" , "Arial" ,sans-serif;
font-size: 16px;
}
#cnblogs_post_body h1 {
background: DeepSkyBlue ;
border-radius: 6px 6px 6px 6px;
box-shadow: 1px DeepSkyBlue , 1px 1px 6px 1px rgba(, , , 0.5);
color: #FFFFFF;
font-family: "微软雅黑" , "宋体" , "黑体" ,Arial;
font-size: 18px;
font-weight: bold;
height: 40px;
line-height: 25px;
margin: 18px !important;
padding: 8px 5px 5px;
text-shadow: 2px 2px 3px #;
}
#cnblogs_post_body h2{
background: MediumSpringGreen ;
border-radius: 6px 6px 6px 6px;
box-shadow: 1px MediumSpringGreen , 1px 1px 6px 1px rgba(, , , 0.5);
color: #FFFFFF;
font-family: "微软雅黑" , "宋体" , "黑体" ,Arial;
font-size:17px;
font-weight: bold;
height: 33px;
line-height: 23px;
margin: 12px !important;
padding: 5px 5px 10px;
text-shadow: 2px 2px 3px #;
} #cnblogs_post_body h3{
background: #FC9D9A ;
border-radius: 6px 6px 6px 6px;
box-shadow: 1px #FC9D9A , 1px 1px 6px 1px rgba(, , , 0.5);
color: #FFFFFF;
font-family: "微软雅黑" , "宋体" , "黑体" ,Arial;
font-size:15px;
font-weight: bold;
height: 33px;
line-height: 23px;
margin: 12px !important;
padding: 5px 5px 10px;
text-shadow: 2px 2px 3px #;
} /* 评论开始 */
#blog-comments-placeholder {
margin: 10px 30px;
border-radius: 5px;
}
div#comments_pager_top {
display: none;
}
#blog-comments-placeholder > br {
display: none;
}
/* 评论列表 */
.feedback_area_title {
margin: 0px;
padding: 10px 10px;
color: #;
font-weight: normal;
border-bottom: solid 1px #ccc;
}
.feedbackManage {
width: 130px;
display: none;
position: absolute;
right: 120px;
top: 0px;
}
.feedbackItem:hover .feedbackManage {
display: block;
}
/* 所有评论里面的A标签 */
.feedbackItem a {
color: # !important;
transition: all .2s;
}
.feedbackItem a:hover {
color: #FF661C !important;
text-decoration: underline;
}
/* 评论分割线 */
.feedbackCon {
border-bottom: solid 1px #E4E4E4;
background: none;
clear: both;
}
/* 楼层 */
.feedbackListSubtitle a.layer {
background: #B2E866;
color: # !important;
padding: 2px 4px;
border-radius: 2px;
margin-right: 4px;
/*display: none;*/
}
/* 评论人 */
.feedbackListSubtitle a[target="_blank"] {
color: #FF6969 !important;
}
/* 评论时间 */
.feedbackItem .comment_date {
color: #BCBCBC;
margin-right: 4px;
}
/* 楼主颜色 */
.feedbackListSubtitle {
color: #0AB300;
}
/* 支持与反对 */
.comment_vote {
float: right;
margin-top: -34px;
display: none;
}
/* 鼠标经过时显示支持与反对 */
.feedbackItem:hover .comment_vote {
display: block;
}
/* 评论内容颜色 */
.feedbackItem {
color: #;
position: relative;
}
/* 评论背景色 */
.blog_comment_body {
background: #B2E866;
float: left;
padding: 14px 10px;
border-radius: 5px;
position: relative;
overflow: visible;
margin-left: 33px;
max-width: 700px;
}
/* 评论三角形 */
.blog_comment_body:before {
content: '';
display: block;
position: absolute;
left: -17px;
top: 9px;
width: ;
height: ;
border-right: solid 18px #B2E866;
border-top: solid 6px rgba(, , , );
border-bottom: solid 10px rgba(, , , );
}
/* 评论头像 */
.blog_comment_body:after {
content: attr(data-louceng);
display: block;
width: 48px;
height: 48px;
position: absolute;
left: -72px;
top: 0px;
text-align: center;
line-height: 48px;
font-size: 18px;
color: #FFF;
text-shadow: 1px 1px 1px rgba(, , , 0.42);
font-family: 'Microsoft Yahei';
background: linear-gradient(top , rgb(, , ) % , rgb(, , ) % , rgb(, , ) %);
background: -o-linear-gradient(top , rgb(, , ) % , rgb(, , ) % , rgb(, , ) %);
background: -ms-linear-gradient(top , rgb(, , ) % , rgb(, , ) % , rgb(, , ) %);
background: -moz-linear-gradient(top , rgb(, , ) % , rgb(, , ) % , rgb(, , ) %);
background: -webkit-linear-gradient(top , #74DA2D % , #87FF4B % , #47B31C %);
background: url(data:image/jpeg;base64,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) no-repeat;
background-size: contain;
}
#blog-comments-placeholder .feedbackItem:nth-child(10n+) .blog_comment_body:after {
background-image: url();
}
#blog-comments-placeholder .feedbackItem:nth-child(10n+) .blog_comment_body:after {
background-image: url();
}
#blog-comments-placeholder .feedbackItem:nth-child(10n+) .blog_comment_body:after {
background-image: url();
}
#blog-comments-placeholder .feedbackItem:nth-child(10n+) .blog_comment_body:after {
background-image: url();
}
#blog-comments-placeholder .feedbackItem:nth-child(10n+) .blog_comment_body:after {
background-image: url();
}
#blog-comments-placeholder .feedbackItem:nth-child(10n+) .blog_comment_body:after {
background-image: url();
}
#blog-comments-placeholder .feedbackItem:nth-child(10n+) .blog_comment_body:after {
background-image: url();
}
#blog-comments-placeholder .feedbackItem:nth-child(10n+) .blog_comment_body:after {
background-image: url();
}
#blog-comments-placeholder .feedbackItem:nth-child(10n+) .blog_comment_body:after {
background-image: url();
}
#blog-comments-placeholder .feedbackItem:nth-child(10n+) .blog_comment_body:after {
background-image: url();
} /* 清除浮动 */
.feedbackCon:after {
content: '';
display: block;
clear: both;
}
/* 引用边框 */
.comment_quote {
border: 1px solid #63921F;
border-radius: 3px;
}
/* 隐藏小图标 */
.feedbackItem .sendMsg2This {
display: none;
} /* 楼主自己的样式 */
.myself .blog_comment_body {
float: right;
margin-right: 72px;
background: #98DDFF;
}
.myself .blog_comment_body:before {
right: -17px;
left: initial;
border-left: solid 18px #98DDFF;
border-right: none;
}
.myself .blog_comment_body:after {
content: '';
display: block;
width: 48px;
height: 48px;
background-image: url(https://pic.cnblogs.com/avatar/1195371/20170706205806.png) !important;
background-size: contain;
position: absolute;
right: -72px;
top: 0px;
left: initial;
}
.myself .comment_vote {
float: left;
margin-left: -40px;
}
.myself .comment_quote {
border: 1px solid #4491B7;
}
.myself .feedbackListSubtitle {
float: right;
margin-right: 10px;
}
.myself .feedbackListSubtitle a.layer {
display: inline-block;
}
.myself .feedbackManage {
left: 66px;
right: initial;
top: 5px;
}
/* 评论结束 */ #comment_form_container
.comment_textarea {
color: #F8F8F2;
background-color: black;
width: %;
height: 360px;
} /* 广告分割线 */
.ad_text_commentbox {
margin-left: -30px;
margin-right: -5px;
background: #EBEBEB;
height: 160px;
}
.ad_text_commentbox:after {
content: '下面是广告辣QwQ,随它去吧';
text-align: center;
display: block;
line-height: 160px;
color: #F44336;
font-size: 20px;
font-family: 'Microsoft Yahei';
text-shadow: 1px 1px 1px #FFF;
} /*推荐和反对*/
#div_digg {
padding: 10px;
position: fixed;
_position: absolute;
z-index: ;
bottom: 20px;
right: ;
_right: 17px;
border: 1px solid #D9DBE1;
background-color: #FFFFFF;
filter: alpha(Opacity=);
-moz-opacity: 0.8;
opacity: 0.8;
} .icon_favorite {
background: transparent url('https://files.cnblogs.com/files/ECJTUACM-873284962/kj.gif') no-repeat ;
padding-left: 16px;
} #blog_post_info_block a {
text-decoration: none;
color: #5B9DCA;
padding: 3px;
}

最新文章

  1. Linux中总线设备驱动模型及平台设备驱动实例
  2. iOS开发常见BUG和一些小技巧(ps:耐心看完,很实用)
  3. NetBIOS与Winsock编程接口
  4. HTML标签----图文详解(二)
  5. ASP.NET MVC 4 WebAPI Simple Sample
  6. Eclipse 的 Debug 介绍与技巧【转载】
  7. MongoDB学习笔记——数据库操作
  8. [JAVA]在linux中设置JDK环境,ZendStudio,Eclipse
  9. 琐碎-关于hadoop的GenericOptionsParser类
  10. bzoj 1513 [POI2006]Tet-Tetris 3D(二维线段树)
  11. bzoj1036
  12. Html.RenderAction简单用法
  13. AtomicInteger相关类
  14. SQL学习(1)初学实验:SQL Server基本配置及基本操作
  15. python之格式化输出
  16. 关于并发用户数的思考-通过PV量换算并发
  17. 给Jqgrid添加横向滚动条,实现点击行数据,触发事件。
  18. springcloud报错Cannot execute request on any known server
  19. Android_字符串转换
  20. lr关联-保存数组并调用(转)

热门文章

  1. vue 和react中子组件分别如何向父组件传值
  2. iOS10、Chrome、微信7.0无法定位
  3. Taro -- 上传图片公用组件
  4. 02机器学习实战之K近邻算法
  5. ltp-ddt eth_switch_config学习
  6. django classonlymethod 和 python classmethod的区别
  7. 对props的研究
  8. Json转换 在java中的应用
  9. BZOJ 2726: [SDOI2012]任务安排 斜率优化 + 凸壳二分 + 卡精
  10. Activiti介绍(一)