Blame view

prestige-vue-4.0.0/src/assets/sass/layout/_help.scss 2.08 KB
5b5ab7e5   함상기   20240409
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
  .help-page {
  	p {
  		margin: 0;
  	}
  
  	.help-search {
  		background: url("../../layout/images/pages/bg-help.png") repeat;
  		padding: 0;
  		text-align: center;
  
  		.help-search-content {
  			padding: 5rem 12rem;
  		}
  
  		.search-container {
  			font-size: 1.5rem;
  			padding: 1rem;
  			position: relative;
  
  			input {
  				appearance: none;
  				font-size: 1.5rem;
  				text-indent: 2.5rem;
  				padding: .5rem;
  				width: 100%;
  			}
  
  			i {
  				color: $textColor;
  				position: absolute;
  				margin-left: 1rem;
  				top: 50%;
  				margin-top: -.5rem;
  			}
  		}
  	}
  
  	.status-bars {
  		margin-top: 1rem;
  		display: flex;
  
  		.status-bar {
  			flex: 1 1 0;
  			background: #8BC34A;
  			height: 50px;
  			margin-right: .25rem;
  			transition: transform $transitionDuration;
  
  			&:last-child {
  				margin-right: 0;
  			}
  
  			&.status-bar-failure {
  				background: #EC407A;
  			}
  
  			&:hover {
  				transform: scale(1.1);
  			}
  		}
  	}
  
  	.status-bar-footer {
  		padding: 1rem 0 0 0;
  		display: flex;
  		justify-content: space-between;
  	}
  
  	.blog-post {
  		height: 150px;
  		border-radius: 4px;
  		margin: 3rem 2rem;
  		position: relative;
  		box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
  
  		&:last-child {
  			margin-bottom: 1rem;
  		}
  
  		img {
  			width: 100%;
  			position: absolute;
  			left: 0;
  			top: 0;
  		}
  
  		.blog-text {
  			position: absolute;
  			left: 20px;
  			top: 30px;
  
  			h1 {
  				font-size: 1.25rem;
  				color: #ffffff;
  				margin-bottom: 1rem;
  				font-weight: 700;
  			}
  
  			span {
  				color: #ffffff;
  				font-weight: 600;
  			}
  		}
  
  		.blog-profile {
  			position: absolute;
  			top: -25px;
  			left: -25px;
  
  			img {
  				width: 50px;
  				height: 50px;
  				border-radius: 50%;
  
  			}
  		}
  
  		&:nth-child(1) {
  			background-image: url("../../layout/images/pages/help/blog1.jpg");
  		}
  
  		&:nth-child(2) {
  			background-image: url("../../layout/images/pages/help/blog2.jpg");
  		}
  
  		&:nth-child(3) {
  			background-image: url("../../layout/images/pages/help/blog3.jpg");
  		}
  	}
  }
  
  @media screen and (max-width: 991px) {
  	.help-page {
  		.help-search {
  			.help-search-content {
  				padding: 6rem 2rem;
  			}
  		}
  	}
  }